我在我的快递应用程序中使用winston
当我运行带有node app.js
winston日志的应用程序时,仅运行到控制台,
但如果我使用VSCode调试器运行应用程序 - 它也会按原样记录到error.log文件中。
我使用的是winston v2.3.1,无法升级。
我的代码:
const logger = new winston.Logger({
transports : [
new winston.transports.Console(),
new winston.transports.File({
filename : './app/error.log',
handleExceptions: true,
humanReadableUnhandledException: true
})
],
handleExceptions : true
});
它会是什么?