fix: remove throwing of error in uncaughtException handler

This commit is contained in:
Xymorot 2020-11-04 21:47:47 +01:00
parent e862d15d75
commit 485cbf9043
1 changed files with 0 additions and 1 deletions

View File

@ -21,7 +21,6 @@ process.on('unhandledRejection', (reason) => {
process.on('uncaughtException', (error) => {
const logger: ILogger = container.get('logger');
void logger.exception(error);
throw error;
});
async function createWindow(): Promise<void> {