From caff44fe056ce7e72157065795401044ea5d8d53 Mon Sep 17 00:00:00 2001 From: Darren Date: Tue, 11 Dec 2012 12:20:48 +0000 Subject: [PATCH] Stack traces on uncaught exceptions --- server/kiwi.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/kiwi.js b/server/kiwi.js index 36c2c5b..1361071 100755 --- a/server/kiwi.js +++ b/server/kiwi.js @@ -164,6 +164,7 @@ function setProcessUid() { // Make sure Kiwi doesn't simply quit on an exception process.on('uncaughtException', function (e) { console.log('[Uncaught exception] ' + e); + console.log(e.stack); }); -- 2.25.1