insomnia/packages/insomnia-app/app/main/error-handling.js
Gregory Schier 4901f03041 Add Prettier
2018-06-25 13:42:50 -04:00

10 lines
254 B
JavaScript

export function init() {
process.on('uncaughtException', err => {
console.error('[catcher] Uncaught exception:', err.stack);
});
process.on('unhandledRejection', err => {
console.error('[catcher] Unhandled rejection:', err.stack);
});
}