summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bot.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot.ts b/src/bot.ts
index cf90dfc..f8fc6b3 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -59,7 +59,7 @@ client.on('message', async msg => {
if (msg.channel.type == 'dm') {
console.log(msg.author.tag, 'says', msgContent, 'in a DM');
} else {
- console.log(msg.member.user.tag, 'says', msgContent, 'in #' + msg.channel.name);
+ console.log(msg.member.user.tag, 'says', msgContent, 'in #' + msg.channel.name + ' in ' + msg.guild.name);
}
}