You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
const addUnhandledErrorHandler = require('electron-unhandled');
|
|
|
|
const Errors = require('./types/errors');
|
|
|
|
|
|
// addHandler :: Unit -> Unit
|
|
exports.addHandler = () => {
|
|
addUnhandledErrorHandler({
|
|
logger: (error) => {
|
|
console.error(
|
|
'Uncaught error or unhandled promise rejection:',
|
|
Errors.toLogFormat(error)
|
|
);
|
|
},
|
|
showDialog: false,
|
|
});
|
|
};
|