0
はここに私が働いているコードです:test.logでショーコンソールでキャッチされない例外ウィンストン(Node.jsの)を使用して
var winston = require('winston');
winston.add(winston.transports.File, { filename: 'test.log', handleExceptions: true, humanReadableUnhandledException: true });
throw "test";
、ウィンストンは適切にエラーを記録しません。
でも、通常のようにコンソールにエラーを表示したいと思います。
これは可能ですか?