From 3624c69d70483227643fac600d61ad842913ef39 Mon Sep 17 00:00:00 2001 From: icedream Date: Fri, 16 Oct 2015 09:43:32 +0200 Subject: [PATCH] log.fatal does - in fact - not exist. --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 2451a8b..325d330 100644 --- a/app.js +++ b/app.js @@ -31,7 +31,7 @@ doShutdownAsync = function(cb) { }; process.on("uncaughtException", function(err) { - log.fatal("Shutting down due to an uncaught exception!", err); + log.error("Shutting down due to an uncaught exception!", err); app.shutdownSync(); });