1

我目前正在使用调试库

有没有办法可以将调试库中的输出文本保存到 Winston 等日志文件中。

例如……伪代码……

var debug = require('debug')('test');
// debug.bind('test.log'); // <-- something like this..
debug('hello world');

所以.. 'hello world' 应该在 test.log 中

4

1 回答 1

3

我找到了作者使用 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

于 2014-12-03T01:59:58.037 回答