From 38eb31dce9917b77f1eb69448ae72f130a92be95 Mon Sep 17 00:00:00 2001 From: Bsian Date: Thu, 31 Oct 2019 23:32:58 +0000 Subject: [PATCH] Diagnosis --- src/class/Util.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/class/Util.ts b/src/class/Util.ts index 383f8e9..efdd055 100644 --- a/src/class/Util.ts +++ b/src/class/Util.ts @@ -43,6 +43,8 @@ export default class Util { */ public resolveCommand(command: string, args?: string[], message?: Message): Promise<{cmd: Command, args: string[] }> { try { + this.client.signale.info(command); + this.client.signale.info(args); let resolvedCommand: Command; if (this.client.commands.has(command)) resolvedCommand = this.client.commands.get(command);