温斯顿日志格式

时间:2018-06-10 07:48:30

标签: json node.js winston

我正在使用Winston ^ 3.0.0-rc6,如下所示:

var options = {
    file: {
        level: 'info',
        filename: `${appRoot}/logs/app.log`,
        handleExceptions: true,
        json: true,
        prettyPrint: true,
        maxsize: 5242880, // 5MB
        maxFiles: 5,
        colorize: true,

    }
};

const jsonFormatter = (logEntry) => {
    if (logEntry.type) {
        const base = {
            timestamp: new Date()
        };
        const json = Object.assign(base, logEntry);
        logEntry[MESSAGE] = JSON.stringify(json);
    } else {
        logEntry = "";
    }

    return logEntry;
}

const logger = winston.createLogger({
    format: winston.format(jsonFormatter)(),
    transports: [
        new winston.transports.File(options.file)
    ],
    exceptionHandlers: [
        new winston.transports.File(options.uncaughtExceptions)
    ]
});

我的日志输出:

{"timestamp":"2018-06-10T07:41:03.387Z","type":"Authentication","status":"failed","level":"error","message":"Incorrect password"}

但我希望他们像:

{
    "timestamp": "2018-06-10T07:41:03.387Z",
    "type": "Authentication",
    "status": "failed",
    "level": "error",
    "message": "Incorrect password"
}

我试着玩json:true和prettyPrint,但它没有做到这一点。

任何人都可以帮忙吗

感谢。

2 个答案:

答案 0 :(得分:0)

不推荐使用:您可以查看链接here

  

我试着玩json:true和prettyPrint,但它没有做到这一点。

像这样的简单代码适合你:

const logger = winston.createLogger({
  level: 'info',
  format: winston.format.json(),
  transports: [
    //
    // - Write to all logs with level `info` and below to `combined.log` 
    // - Write all logs error (and below) to `error.log`.
    //
    new winston.transports.File({ filename: 'error.log', level: 'error' }),
    new winston.transports.File({ filename: 'combined.log' })
  ]
});

如果这不起作用,请告诉我,以便即兴发挥。

答案 1 :(得分:0)

我在您的代码中注意到这一行

logEntry[MESSAGE] = JSON.stringify(json);

您正在使用JSON.stringify(),它需要另外两个可选参数

JSON.stringify(value[, replacer[, space]])

如果将space设置为所需的空格量,则将获得所需的输出。因此,将初始行更改为:

logEntry[MESSAGE] = JSON.stringify(json, null, 2);  // or 4 ;)

replacer参数为null,因为我们不想更改默认行为。)