From 3a31a20e21f82af0be83f5734c4c389c60648f0d Mon Sep 17 00:00:00 2001 From: Darren Date: Thu, 17 Nov 2011 09:37:17 +0000 Subject: [PATCH] Globale exception handler re-enabled --- server/kiwi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/kiwi.js b/server/kiwi.js index 68c0bb6..1afdb41 100644 --- a/server/kiwi.js +++ b/server/kiwi.js @@ -212,9 +212,9 @@ this.kiwi_mod.printMods(); // Make sure Kiwi doesn't simply quit on an exception -/*process.on('uncaughtException', function (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