From 3c892e0366c220932cf9030978ac0315f3f48b0d Mon Sep 17 00:00:00 2001 From: Darren Date: Thu, 11 Oct 2012 11:31:51 +0100 Subject: [PATCH] UncaughtException handler in server re-enabled --- server/kiwi.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/kiwi.js b/server/kiwi.js index f419d73..e8dbc73 100755 --- a/server/kiwi.js +++ b/server/kiwi.js @@ -215,9 +215,9 @@ this.kiwi_mod.printMods(); // Make sure Kiwi doesn't simply quit on an exception -//process.on('uncaughtException', function (e) { -// console.log('[Uncaught exception] ' + e); -//}); +process.on('uncaughtException', function (e) { + console.log('[Uncaught exception] ' + e); +}); // Start the server up this.websocketListen(this.config.servers, this.httpHandler); -- 2.25.1