1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01: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));
}
process.on('uncaughtException', err => {
logger.error('Uncaught Exception:', err.message);
logger.error(err.stack);
});
module.exports = {
start,
};