summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan T <jan@jantuomi.fi>2025-08-26 11:24:50 +0000
committerGitHub <noreply@github.com>2025-08-26 11:24:50 +0000
commitc7598aa23c5cfbacbb167862032694c136fd598f (patch)
treef089c6881a65c6e53992bcd4f546c11d2c691cb2 /src
parent548f34f599d0742998c71e215afb28258ee31c27 (diff)
parent038b3ae298aefa179cdcb21c881fa5350cf92cb7 (diff)
Merge pull request #2 from onnilampi/main
Containerize application and manage it with systemd
Diffstat (limited to 'src')
-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];