summaryrefslogtreecommitdiffstats
path: root/bin/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/utils.js')
-rw-r--r--bin/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/utils.js b/bin/utils.js
index f736720..3aa4f18 100644
--- a/bin/utils.js
+++ b/bin/utils.js
@@ -83,7 +83,7 @@ function serveDir(dir, port) {
}
function logError(err) {
- console.log(err.message || err);
+ console.log(err.stack || err.message || err);
return Q.reject(err);
};