refactor(arabot): remove debug logger message for slowmode

This commit is contained in:
Anthony Berg 2023-11-18 23:19:54 +00:00
parent b39cf0b44d
commit e936fe49b1

View File

@ -104,7 +104,6 @@ export class SlowmodeCommand extends Command {
if (isNumber(durationCheck)) { if (isNumber(durationCheck)) {
durationCheck += 's'; durationCheck += 's';
} }
this.container.logger.debug(durationCheck);
const durationParsed = new Duration(durationCheck); const durationParsed = new Duration(durationCheck);
let time = 0; let time = 0;