winston只在调试时保存日志到文件

时间:2017-11-28 09:37:39

标签: javascript node.js debugging logging winston

我在我的快递应用程序中使用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
});

它会是什么?

0 个答案:

没有答案