实际上,Winston允许您传递在记录所有传输后执行的回调:
process.on('uncaughtException', function(err) { logger.log('error', 'Fatal uncaught exception crashed cluster', err, function(err, level, msg, meta) { process.exit(1); });});文件:https://github.com/flatiron/winston#events-and-callbacks-in-
winston



