Better error reporting

This commit is contained in:
syuilo 2018-05-20 19:24:54 +09:00
parent 684a8531b6
commit 8bb97f2e4c

View file

@ -194,7 +194,12 @@ cluster.on('exit', worker => {
// Display detail of unhandled promise rejection
process.on('unhandledRejection', console.dir);
// Dying away...
process.on('exit', () => {
Logger.info('The process is going exit');
// Display detail of uncaught exception
process.on('uncaughtException', err => {
console.error(err);
});
// Dying away...
process.on('exit', code => {
Logger.info(`The process is going exit (${code})`);
});