Nodejs中关于process.on uncaughtException unhandledRejection使用的疑问

发布于 1周前 作者 zlyuanteng 来自 nodejs/Nestjs

Nodejs中关于process.on uncaughtException unhandledRejection使用的疑问

process.on(‘uncaughtException’,function name(error) {
const msg = error ? Err.getThrowableMessage(error) : ‘未知错误’;
logger.error(‘全局异常 uncaughtException:’ +  msg);
});

process.on(‘unhandledRejection’,function name(error) { const msg = error ? Err.getThrowableMessage(error) : ‘未知错误’; monitor.report(MONITOR.TEST_PORTRAIT_GLOBAL_REJECTION_COUNT); });

server 需要用这种方式保证服务的稳定吗? 使用的是 koa 的框架


回到顶部