diff --git a/app/main_dev/logging.js b/app/main_dev/logging.js index 09719a5819..576d4cc276 100644 --- a/app/main_dev/logging.js +++ b/app/main_dev/logging.js @@ -74,15 +74,17 @@ export function createLogger(debug) { }); if (debug) { - logger.add(new winston.transports.Console({ - level: "debug", - format: combine( - timestamp({ format: logTimestamp }), - splat(), - printf(logFormatter), - colorize({ all: true }) - ) - })); + logger.add( + new winston.transports.Console({ + level: "debug", + format: combine( + timestamp({ format: logTimestamp }), + splat(), + printf(logFormatter), + colorize({ all: true }) + ) + }) + ); } return logger;