私は Node.js アプリを作成しており、ほとんどのロギング目的で Winston を使用しています。しかし、ログ ファイル内のすべてのレコードを 1 行で見つけました。ログ レコードごとに行を変更したいのですが、これを行う方法はありますか? 私のコード;
var winston = require("winston"); var logger = new(winston.Logger)({
transports: [
new(winston.transports.Console)(),
new(winston.transports.File)({filename: './log/logFile.log', handleExceptions: true, json:true})
]
}))
そのように:
{"level":"info","message":"test","timestamp":"2012-12-05T07:12:23.774Z"}
{"level":"info","message":"test","timestamp":"2012-12-05T07:15:16.780Z"}