diff --git a/backend/src/server/LogError.ts b/backend/src/server/LogError.ts index b753d204e..1ee4585cd 100644 --- a/backend/src/server/LogError.ts +++ b/backend/src/server/LogError.ts @@ -4,6 +4,6 @@ export default class LogError extends Error { // eslint-disable-next-line @typescript-eslint/no-explicit-any constructor(msg: string, ...details: any[]) { super(msg) - logger.error(msg, ...details) + logger.error(this.stack, ...details) } }