minor with logging and cleanup bootstrap

This commit is contained in:
lesion
2022-03-10 12:37:05 +01:00
parent c54706bfbc
commit d430417af2
4 changed files with 14 additions and 20 deletions

View File

@@ -15,7 +15,7 @@ const logger = createLogger({
transports: process.env.NODE_ENV !== 'production'
? [new transports.Console(
{
level: 'debug',
level: config.log_level || 'debug',
format: format.combine(format.splat(), format.timestamp(), format.colorize(), gancioFormat)
}
)]