Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dpjayasekara/ed9165c17adcfc22dd73ec12903e0759 to your computer and use it in GitHub Desktop.
Save dpjayasekara/ed9165c17adcfc22dd73ec12903e0759 to your computer and use it in GitHub Desktop.
process.on('uncaughtException', (err) => {
logger.fatal('an uncaught exception detected', err);
});
process.on('unhandledRejection', (err) => {
logger.fatal('an unhandled rejection detected', err)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment