diff options
Diffstat (limited to 'scripts/parse-log.ts')
-rwxr-xr-x | scripts/parse-log.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/parse-log.ts b/scripts/parse-log.ts index 24a09c885..e2c42bf4c 100755 --- a/scripts/parse-log.ts +++ b/scripts/parse-log.ts | |||
@@ -2,7 +2,6 @@ import { createReadStream } from 'fs' | |||
2 | import { join } from 'path' | 2 | import { join } from 'path' |
3 | import { createInterface } from 'readline' | 3 | import { createInterface } from 'readline' |
4 | import * as winston from 'winston' | 4 | import * as winston from 'winston' |
5 | import { readFileBufferPromise } from '../server/helpers/core-utils' | ||
6 | import { CONFIG } from '../server/initializers/constants' | 5 | import { CONFIG } from '../server/initializers/constants' |
7 | 6 | ||
8 | const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT | 7 | const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT |
@@ -16,7 +15,8 @@ const logger = new winston.Logger({ | |||
16 | humanReadableUnhandledException: true, | 15 | humanReadableUnhandledException: true, |
17 | json: false, | 16 | json: false, |
18 | colorize: true, | 17 | colorize: true, |
19 | prettyPrint: true | 18 | prettyPrint: true, |
19 | stderrLevels: [] | ||
20 | }) | 20 | }) |
21 | ], | 21 | ], |
22 | exitOnError: true | 22 | exitOnError: true |