将控制台传输附加到 Winston 日志记录
Attaching console transport to Winston logging
所以我正在尝试将控制台作为传输连接到 winston logger。下面是我的代码。
winston.add(winston.transports.Console, {
level: 'info',
colorize: true,
timestamp: true,
json: false,
stringify: false,
prettyPrint: true,
depth: 5,
humanReadableUnhandledException: true,
showLevel: true,
stderrLevels: ['error', 'debug']
});
但是当我启动应用程序时,出现以下错误。
C:\Users\xxxxx\yyyyy\javascript\MyApp\node_modules\winston\lib\winston\logger.js:481
throw new Error('Transport already attached: ' + instance.name + ", assign a different name");
^
Error: Transport already attached: console, assign a different name
at Logger.add (C:\Users\xxxxx\yyyyy\javascript\MyApp\node_modules\winston\lib\winston\logger.js:481:11)
at Object.winston.(anonymous function) [as add] (C:\Users\xxxxx\yyyyy\javascript\MyApp\node_modules\winston\lib\winston.js:87:34)
at Object.<anonymous> (C:\Users\xxxxx\yyyyy\javascript\MyApp\app.js:36:9)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (C:\Users\xxxxx\yyyyy\javascript\MyApp\bin\www:7:11)
现在,我了解到我的控制台已经默认连接到记录器。但是我额外写这个是因为我想根据自己的喜好更改配置。
任何人都可以建议我如何实现这一目标吗?我是否必须使用其他语法来更改已连接传输的配置,或者是否有任何方法可以使用我正在使用的相同代码来解决这个问题?
求推荐。
如果您已经附加了相同类型的传输,则需要为新传输命名:
winston.add(winston.transports.Console, {
name : 'UNIQUE_NAME_HERE',
level: 'info',
...
});
已记录 here。
所以我正在尝试将控制台作为传输连接到 winston logger。下面是我的代码。
winston.add(winston.transports.Console, {
level: 'info',
colorize: true,
timestamp: true,
json: false,
stringify: false,
prettyPrint: true,
depth: 5,
humanReadableUnhandledException: true,
showLevel: true,
stderrLevels: ['error', 'debug']
});
但是当我启动应用程序时,出现以下错误。
C:\Users\xxxxx\yyyyy\javascript\MyApp\node_modules\winston\lib\winston\logger.js:481
throw new Error('Transport already attached: ' + instance.name + ", assign a different name");
^
Error: Transport already attached: console, assign a different name
at Logger.add (C:\Users\xxxxx\yyyyy\javascript\MyApp\node_modules\winston\lib\winston\logger.js:481:11)
at Object.winston.(anonymous function) [as add] (C:\Users\xxxxx\yyyyy\javascript\MyApp\node_modules\winston\lib\winston.js:87:34)
at Object.<anonymous> (C:\Users\xxxxx\yyyyy\javascript\MyApp\app.js:36:9)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (C:\Users\xxxxx\yyyyy\javascript\MyApp\bin\www:7:11)
现在,我了解到我的控制台已经默认连接到记录器。但是我额外写这个是因为我想根据自己的喜好更改配置。
任何人都可以建议我如何实现这一目标吗?我是否必须使用其他语法来更改已连接传输的配置,或者是否有任何方法可以使用我正在使用的相同代码来解决这个问题?
求推荐。
如果您已经附加了相同类型的传输,则需要为新传输命名:
winston.add(winston.transports.Console, {
name : 'UNIQUE_NAME_HERE',
level: 'info',
...
});
已记录 here。