作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何配置Winston输出日志
2019-06-30 17:39:07:错误:奶酪已经腐烂
我尝试了这个,但它在末尾输出时间戳
const logger = winston.createLogger({
format: winston.format.combine(
winston.format.timestamp({format: 'YYYY-MM-DD HH:mm:ss'}),
winston.format.simple()
)
});
错误:奶酪已经腐烂! {“时间戳”:“2019-06-30 23:32:02”}
最佳答案
尝试下面的代码。我希望这能解决这个问题。您可以在myFormat自定义函数中按照自己需要的方式进行自定义
const myFormat = printf(({ level, message, label, timestamp }) => {
return `${timestamp} : [${label}] : ${level}: ${message}`;
});
const logger = createLogger({
format: combine(
label({ label: 'right meow!' }),
timestamp(),
myFormat
),
transports: [new transports.Console()]
});
关于javascript - winston : How to get logging with timestamp at the front,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56826988/
我是一名优秀的程序员,十分优秀!