Move uncaught exception handler to wrapper

Feels more appropriate there to me.
This commit is contained in:
Asher
2020-09-14 15:56:08 -05:00
parent 811cf3364a
commit 6bdaada689
2 changed files with 8 additions and 7 deletions

View File

@@ -254,6 +254,14 @@ if (!process.stdout.isTTY) {
process.stdout.on("error", () => ipcMain().exit())
}
// Don't let uncaught exceptions crash the process.
process.on("uncaughtException", (error) => {
logger.error(`Uncaught exception: ${error.message}`)
if (typeof error.stack !== "undefined") {
logger.error(error.stack)
}
})
export const wrap = (fn: () => Promise<void>): void => {
if (ipcMain().parentPid) {
ipcMain()