1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-09 01:17:06 +02:00

Merge pull request #210 from Unleash/SimenB-patch-1

Remove uncaught exception logging
This commit is contained in:
Ivar Conradi Østhus 2017-02-22 09:52:02 +01:00 committed by GitHub
commit fc5abb2952

View File

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