From 9ee650461fc4ebf688884ec24a1ed67b8798f70a Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Mon, 14 Aug 2017 20:35:30 -0700 Subject: [PATCH] Change unhandledRejection from fatal log level to error --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index cbd08e78..dbfc94cd 100644 --- a/src/main.js +++ b/src/main.js @@ -106,5 +106,5 @@ process.on('SIGUSR2', () => { require('bluebird'); process.on('unhandledRejection', function (reason, promise) { - LOGGER.fatal('Unhandled rejection: %s', reason.stack); + LOGGER.error('Unhandled rejection: %s', reason.stack); });