mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 15:25:59 +00:00
#360 allow to set log level
This commit is contained in:
@@ -20,9 +20,13 @@ function configureLogger() {
|
||||
|
||||
let logger = pinoms({
|
||||
streams: [
|
||||
{ stream: process.stdout }, // an "info" level destination stream
|
||||
{
|
||||
stream: process.stdout,
|
||||
level: process.env.CONSOLE_LOG_LEVEL || process.env.LOG_LEVEL || 'info',
|
||||
},
|
||||
{
|
||||
stream: fs.createWriteStream(logsFilePath),
|
||||
level: process.env.FILE_LOG_LEVEL || process.env.LOG_LEVEL || 'info',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user