diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/logger.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index 7624b3cff..201ea2235 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts | |||
@@ -26,12 +26,12 @@ const loggerFormat = winston.format.printf((info) => { | |||
26 | if (additionalInfos === '{}') additionalInfos = '' | 26 | if (additionalInfos === '{}') additionalInfos = '' |
27 | else additionalInfos = ' ' + additionalInfos | 27 | else additionalInfos = ' ' + additionalInfos |
28 | 28 | ||
29 | if (info.message.stack !== undefined) info.message = info.message.stack | 29 | if (info.message && info.message.stack !== undefined) info.message = info.message.stack |
30 | return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}` | 30 | return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}` |
31 | }) | 31 | }) |
32 | 32 | ||
33 | const timestampFormatter = winston.format.timestamp({ | 33 | const timestampFormatter = winston.format.timestamp({ |
34 | format: 'YYYY-MM-DD hh:mm:ss.SSS' | 34 | format: 'YYYY-MM-dd HH:mm:ss.SSS' |
35 | }) | 35 | }) |
36 | const labelFormatter = winston.format.label({ | 36 | const labelFormatter = winston.format.label({ |
37 | label | 37 | label |