uncaught exceptions now reported as errors by electron-logger

This commit is contained in:
Tzahi12345
2023-04-20 00:19:28 -04:00
parent 8e1ebb5a4a
commit 0a608d8b7a

View File

@@ -78,5 +78,5 @@ app.on('activate', () => {
});
process.on('uncaughtException', (error) => {
elogger.info(error.message);
elogger.error(error.message);
});