Better error reporting
This commit is contained in:
parent
684a8531b6
commit
8bb97f2e4c
11
src/index.ts
11
src/index.ts
|
@ -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})`);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue