diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-19 14:47:03 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-19 14:47:03 +0100 |
commit | 2af4fa4d8ba69424a279402e1e3f9e09a90c7e45 (patch) | |
tree | f31e470bc06d3a4dce05d2ba1f533225799973a9 /server/helpers | |
parent | 23e27dd53599be65b2dc2968448ce155a00a96c9 (diff) | |
download | PeerTube-2af4fa4d8ba69424a279402e1e3f9e09a90c7e45.tar.gz PeerTube-2af4fa4d8ba69424a279402e1e3f9e09a90c7e45.tar.zst PeerTube-2af4fa4d8ba69424a279402e1e3f9e09a90c7e45.zip |
Fix tests
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/logger.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index 6a02f680a..10e8cabc8 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts | |||
@@ -24,8 +24,9 @@ function keysExcluder (key, value) { | |||
24 | const loggerFormat = winston.format.printf((info) => { | 24 | const loggerFormat = winston.format.printf((info) => { |
25 | let additionalInfos = JSON.stringify(info, keysExcluder, 2) | 25 | let additionalInfos = JSON.stringify(info, keysExcluder, 2) |
26 | if (additionalInfos === '{}') additionalInfos = '' | 26 | if (additionalInfos === '{}') additionalInfos = '' |
27 | else additionalInfos = ' ' + additionalInfos | ||
27 | 28 | ||
28 | return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message} ${additionalInfos}` | 29 | return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}` |
29 | }) | 30 | }) |
30 | 31 | ||
31 | const timestampFormatter = winston.format.timestamp({ | 32 | const timestampFormatter = winston.format.timestamp({ |