在nodejs winston logger中为时间戳使用不同的属性名称

时间:2019-06-04 06:11:29

标签: node.js logging winston

我正在使用带时间戳格式程序的winstonjs记录器。

我看到有一个提供别名的选项,并且我知道这是更改timestamp属性名称的方法,但是它只添加了另一个别名名称的timestamp属性... 例如:

    var myFormat = winston.format.combine(winston.format.timestamp({format:'YYYY-MM-DD HH:mm:ss.SSS', alias:'Date'}),
                                          winston.format.json());
    this.winstonLogger = winston.createLogger();
    this.winstonLogger.configure({
        level: 'info',
        format: myFormat,
        transports: [
            new winston.transports.Console(),
          ]
    });

将导致这样的日志:

{"level":"info","message":"app is loaded","timestamp":"2019-06-03 17:01:10.054","Date":"2019-06-03 17:01:10.054"}

所以有2个时间戳属性,一个按我的要求命名为“ timestamp”,另一个命名为“ Date”。

我用错了吗? 还有另一种方法吗?

1 个答案:

答案 0 :(得分:0)

奇怪的是,尽管在添加别名时会将其添加为单独的时间戳记条目。我认为您可以尝试这种解决方法。

const winston = require('winston'); 
const {createLogger, format, transports, info} = require('winston');

const removeTimestamp = format((info, opts) => {
  if (info.timestamp) {
    delete info.timestamp;
    return info;
  }
});

this.winstonLogger = createLogger({
  // To see more detailed errors, change this to 'debug'
  level: 'info',
  format: format.combine(
      format.timestamp({
        format: 'YYYY-MM-DD HH:mm:ss.SSS',
        alias: 'Date',
      }),
      removeTimestamp(),
      format.json(),
  ),
  transports: [
    new transports.Console()
  ],
});