无法在Winston logger v3.x的控制台中获取任何颜色
GroupIndex
根据github页面https://github.com/winstonjs/winston
上的文档做了这个片段虽然没有颜色
答案 0 :(得分:1)
尝试使用combine
方法设置格式:
winston.format.combine(
winston.format.colorize(),
winston.format.simple()
);
colorize格式器必须先于添加要着色的文本的格式器。希望能帮助到你。 reference