From 2ec2c95d9cc1a688dc92c8b83a50a0d18c4e164a Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 27 Oct 2019 23:51:26 -0400 Subject: [PATCH] modlogs cmd fix --- src/commands/modlogs.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/modlogs.ts b/src/commands/modlogs.ts index 9a40fd4..e893aa0 100644 --- a/src/commands/modlogs.ts +++ b/src/commands/modlogs.ts @@ -37,6 +37,7 @@ export default class Modlogs extends Command { } const value = `**Account name:** ${username}\n**Moderator:** <@${moderatorID}>\n**Reason:** ${reason}\n**Date:** ${date.toLocaleString('en-us')} EST`; const inline = true; + this.client.signale.debug(name); return { name, value, inline }; }); const users = [...new Set(query.map((log) => log.userID))].map((u) => `<@${u}>`);