From e936fe49b152c67f247db32d26db4dc81af83d68 Mon Sep 17 00:00:00 2001 From: Anthony Berg Date: Sat, 18 Nov 2023 23:19:54 +0000 Subject: [PATCH] refactor(arabot): remove debug logger message for slowmode --- src/commands/mod/slowmode.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/mod/slowmode.ts b/src/commands/mod/slowmode.ts index 08b6b1d..7f14ea0 100644 --- a/src/commands/mod/slowmode.ts +++ b/src/commands/mod/slowmode.ts @@ -104,7 +104,6 @@ export class SlowmodeCommand extends Command { if (isNumber(durationCheck)) { durationCheck += 's'; } - this.container.logger.debug(durationCheck); const durationParsed = new Duration(durationCheck); let time = 0;