如何设置 Winston 日期格式字符串以获得微秒分辨率?

How to set Winston date format string to get microseconds resolution?

我有以下 Winston 记录器格式:

simple(),
colorize(),
timestamp({ format: 'YYYY-MM-DD HH:mm:ss.SSS' })

这给了我以毫秒为单位的时间戳。我应该在格式字符串中更改什么以获取以微秒为单位的时间戳?

原来Winston不支持微秒分辨率。温斯顿正在使用 fecha under the hood for timestamp formatting, and fecha does not support microseconds resolution at the moment. I opened the following github issue 请求 fecha 添加此功能。