diff options
| author | Onni Lampi <contact@onnilampi.fi> | 2025-08-16 17:19:23 +0300 |
|---|---|---|
| committer | Onni Lampi <contact@onnilampi.fi> | 2025-08-16 17:19:23 +0300 |
| commit | b15d63c86f20dc658fe0a0e92ff06b2ff3a8e844 (patch) | |
| tree | b74ed7cea704186778949aff784638b94cd233cf | |
| parent | 30efac2becd6dcc6854bb1e896b9ab579b42c3cc (diff) | |
Add command requester to log output
| -rw-r--r-- | src/index.ts | 2 |
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]; |
