diff --git a/src/structure/components/observers/CommandHandler.js b/src/structure/components/observers/CommandHandler.js index 1fde0c9..ff3b7d8 100644 --- a/src/structure/components/observers/CommandHandler.js +++ b/src/structure/components/observers/CommandHandler.js @@ -130,7 +130,7 @@ class CommandHandler extends Observer { let response = null; const now = Date.now(); try { - this.logger.info(`${invoker.user.tag} (${invoker.user.id}) is executing ${invoker.command.name}`); + this.logger.info(`${invoker.user.tag} (${invoker.user.id}) is executing ${invoker.command.name} in ${invoker.guild?.name || 'dms'}`); response = await invoker.command.execute(invoker, options); invoker.command.success(now); } catch (error) {