diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts index d633fcbbcb..bcd6561691 100644 --- a/src/index.ts +++ b/src/index.ts @@ -194,7 +194,12 @@ cluster.on('exit', worker => { // Display detail of unhandled promise rejection process.on('unhandledRejection', console.dir); +// Display detail of uncaught exception +process.on('uncaughtException', err => { + console.error(err); +}); + // Dying away... -process.on('exit', () => { - Logger.info('The process is going exit'); +process.on('exit', code => { + Logger.info(`The process is going exit (${code})`); }); |