mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #94 from overleaf/spd-unhandled-errors
Write to error log on unhandled rejection/exception
This commit is contained in:
commit
00d949ba26
1 changed files with 9 additions and 0 deletions
|
@ -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
|
module.exports = app
|
||||||
|
|
Loading…
Reference in a new issue