Write to error log on unhandled rejection/exception

This commit is contained in:
Simon Detheridge 2020-02-27 10:33:48 +00:00
parent 0cdcac4cd2
commit 6e19a650d2

View file

@ -156,4 +156,13 @@ if (!module.parent) {
})
}
process
.on('unhandledRejection', (reason, p) => {
logger.err(reason, 'Unhandled Rejection at Promise', p)
})
.on('uncaughtException', err => {
logger.err(err, 'Uncaught Exception thrown')
process.exit(1)
})
module.exports = app