你能告诉我如何在日志中打印/写入文件时添加时间戳吗?这意味着it shows current data and time在文件中打印日志时。
我试过这样,但没有显示正确的输出。我加了这个
const consoleLogger = new winston.transports.Console({
timestamp: function() {
const today = moment();
return today.format("DD-MM-YYYY");
},
format: winston.format.json(),
colorize: true,
level: "debug"
});
还是行不通
https://codesandbox.io/s/beautiful-kapitsa-j1sku
没有时间戳的当前输出
{"message":"running → PORT (src/index.js:10)","level":"info"}
潇潇雨雨
相关分类