不知道是不是我一个人,但是
var winston = require('winston'); winston.log('这不会打印'); winston.info('但这会。');
只打印第二行。
为什么不打印日志?我只想打印日志,级别为:log
winston.log('log', 'This wont print');
这是不可能的还是我做错了什么?
不知道是不是我一个人,但是
var winston = require('winston'); winston.log('这不会打印'); winston.info('但这会。');
只打印第二行。
为什么不打印日志?我只想打印日志,级别为:log
winston.log('log', 'This wont print');
这是不可能的还是我做错了什么?
好吧,事实证明这是不可能的,因为log
不是日志级别,而是info
。
感谢#node.js 中的@elmigranto 指出。
var winston = require('winston');
:
:
:
winston.level = 'your log level';
This will set the log level to 'your log level'. (Tested with winston 0.7.3)
更好的使用方式:
console.log('your log')