Globale exception handler re-enabled
authorDarren <darren@darrenwhitlen.com>
Thu, 17 Nov 2011 09:37:17 +0000 (09:37 +0000)
committerDarren <darren@darrenwhitlen.com>
Thu, 17 Nov 2011 09:37:17 +0000 (09:37 +0000)
server/kiwi.js

index 68c0bb61974a8bd822f2306b1030a9bda1286850..1afdb414d84a84a34cd8479027de63ce92f2e4f5 100644 (file)
@@ -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);