mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 02:50:44 -05:00
Logform made a breaking change in 2.7.0, fix our call to printf to work with it (#1065)
This commit is contained in:
commit
dae617c0cd
@ -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