summaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorOnni Lampi <contact@onnilampi.fi>2025-08-16 17:19:23 +0300
committerOnni Lampi <contact@onnilampi.fi>2025-08-16 17:19:23 +0300
commitb15d63c86f20dc658fe0a0e92ff06b2ff3a8e844 (patch)
treeb74ed7cea704186778949aff784638b94cd233cf /src/index.ts
parent30efac2becd6dcc6854bb1e896b9ab579b42c3cc (diff)
Add command requester to log output
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index 0615cd7..e2254e7 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -36,7 +36,7 @@ app.command("/veeti", async ({ command, ack, respond, client }) => {
return;
}
- console.log("Received command: /veeti", command.text);
+ console.log("Received command: /veeti", command.text, " from ", command.user_name);
const cmdText = command.text.trim();
const cmdParts = cmdText.split(" ");
const url = cmdParts[0];