diff --git a/src/utils/bot/command_logger.ts b/src/utils/bot/command_logger.ts index ec75135..f6dc02c 100644 --- a/src/utils/bot/command_logger.ts +++ b/src/utils/bot/command_logger.ts @@ -25,6 +25,6 @@ export class CommandLogger { } public async error(content: string, error: unknown) { - this.logger.error({ error }, content); + this.logger.error({ err: error }, content); } }