From d2b83f64d8454f4f8539da968cce75b5dc52a383 Mon Sep 17 00:00:00 2001 From: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:10:12 -0800 Subject: [PATCH] Logform made a breaking change in 2.7.0, fix our call to printf to work with it --- project/src/utils/logging/AbstractWinstonLogger.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/src/utils/logging/AbstractWinstonLogger.ts b/project/src/utils/logging/AbstractWinstonLogger.ts index fa1cb874..dc9f39e4 100644 --- a/project/src/utils/logging/AbstractWinstonLogger.ts +++ b/project/src/utils/logging/AbstractWinstonLogger.ts @@ -132,7 +132,9 @@ export abstract class AbstractWinstonLogger implements ILogger { new transports.Console({ format: format.combine( format.colorize({ all: true, colors: { custom: textColor } }), - format.printf(({ message }) => message), + format.printf(({ message }) => { + return `${message}`; + }), ), }), ],