mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 02:10:44 -05:00
Logform made a breaking change in 2.7.0, fix our call to printf to work with it
This commit is contained in:
parent
c334855919
commit
d2b83f64d8
@ -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}`;
|
||||
}),
|
||||
),
|
||||
}),
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user