1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

Remove uncaught exception logging

This is the responsibility of the app
This commit is contained in:
Simen Bekkhus 2017-02-22 09:48:00 +01:00 committed by Ivar Conradi Østhus
parent 81c9482bc7
commit 21e0522116

View File

@ -44,11 +44,6 @@ function start (opts) {
.catch(err => logger.error('failed creating app', err));
}
process.on('uncaughtException', err => {
logger.error('Uncaught Exception:', err.message);
logger.error(err.stack);
});
module.exports = {
start,
};