removed logging reference.

This commit is contained in:
Mark Beamer Jr 2018-07-03 23:51:39 -04:00
parent b87a2420a2
commit 49a7c42e73

View file

@ -11,14 +11,6 @@ require('winston-daily-rotate-file');
// Setup logging
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, { colorize: true, timestamp: true, prettyPrint: true });
winston.add(winston.transports.DailyRotateFile, {
filename: 'lighthouse-%DATE%.log',
dirname: './logs',
datePattern: 'YYYY-MM-DD-HH',
zippedArchive: true,
maxSize: '20m',
maxFiles: '14d',
})
// Create Koa Application
const app = new Koa();