我目前正在使用调试库。
有没有办法可以将调试库中的输出文本保存到 Winston 等日志文件中。
例如……伪代码……
var debug = require('debug')('test');
// debug.bind('test.log'); // <-- something like this..
debug('hello world');
所以.. 'hello world' 应该在 test.log 中
我找到了作者使用 Winston 的网站。
var winston = require('winston');
//log your output to a file also
winston.add(winston.transports.File, { filename: 'somefile.log' });
//log some outputs
winston.log('info', 'Hello distributed log files!');
winston.error('Who let the dogs out?!');
来源:http ://devgigs.blogspot.kr/2014/01/mastering-nodejs-logging.html?m=1