1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +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 GitHub
parent 79e9e3cb80
commit 1e76c04c55

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,
};