From f91187cfa693c4093033f1698deb90e6b70a7acc Mon Sep 17 00:00:00 2001 From: Darren Date: Sat, 20 Dec 2014 22:08:28 +0000 Subject: [PATCH] Log client startup errors to console --- client/src/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/app.js b/client/src/app.js index 28ddc97..619507c 100644 --- a/client/src/app.js +++ b/client/src/app.js @@ -250,6 +250,9 @@ _kiwi.global = { _kiwi.global.plugins = new _kiwi.model.PluginManager(); callback(); + + }).then(null, function(err) { + console.error(err.stack); }); }, -- 2.25.1