add console loggin in production

This commit is contained in:
les 2021-06-19 22:53:01 +02:00
parent 8327db561e
commit 8984736ca7
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -27,9 +27,17 @@ const logger = createLogger({
createSymlink: true, createSymlink: true,
zippedArchive: true, zippedArchive: true,
maxSize: '10m', maxSize: '10m',
maxFiles: '14d', maxFiles: '10d',
format: format.combine(format.timestamp(), format.splat(), gancioFormat) format: format.combine(format.timestamp(), format.splat(), gancioFormat)
})] }),
new transports.Console(
{
handleExceptions: true,
handleRejections: true,
level: config.log_level || 'info',
format: format.combine(format.timestamp(), format.splat(), format.colorize(), gancioFormat)
}
)]
}) })
module.exports = logger module.exports = logger