aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/parse-log.ts4
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'
2import { join } from 'path' 2import { join } from 'path'
3import { createInterface } from 'readline' 3import { createInterface } from 'readline'
4import * as winston from 'winston' 4import * as winston from 'winston'
5import { readFileBufferPromise } from '../server/helpers/core-utils'
6import { CONFIG } from '../server/initializers/constants' 5import { CONFIG } from '../server/initializers/constants'
7 6
8const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT 7const 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