如何使用Winston向文件添加时间戳

时间:2018-07-01 20:43:14

标签: winston

我正在使用Winston登录,并且正在使用以下代码:

const logger = winston.createLogger({
  level: 'info',
  transports: [
    //
    // - Write to all logs with level `info` and below to `MyLog.log`
    //
    new winston.transports.File({
      filename: 'MyLog.log',
      format: winston.format.combine(
        winston.format.timestamp({
          format: 'YYYY-MM-DD hh:mm:ss A ZZ'
        }),
        winston.format.json()
      ),
      handleExceptions: true
    })
  ]
});

如果我将传输方式更改为“控制台”,它将像冠军一样工作。

我在这里想念什么?

0 个答案:

没有答案