3
我使用的是這樣的:Winston日誌的默認位置是什麼?
var winston = require('winston'), logger = new (winston.Logger)({
transports: [
new (winston.transports.Console)(),
new (winston.transports.File) ({filename: 'test.log'})
]
});
logger.log('Hello world');
我無法找到日誌文件test.log
我的系統,並在控制檯中也不例外或信息上的任何地方任。