diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-06 13:44:14 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-06 13:44:14 -0700 |
commit | 014b2f9c6902235216fee390078ece0049344c0b (patch) | |
tree | 4b7a40abe74cce7b961f8a3bc63da9d4f044b315 /bin/utils.js | |
parent | fb26b634ce2f332bcc3a8764009bdc65a2245f35 (diff) | |
parent | 65cb23feabb7ae311f18c5f50978686d202dafec (diff) | |
download | gitbook-014b2f9c6902235216fee390078ece0049344c0b.zip gitbook-014b2f9c6902235216fee390078ece0049344c0b.tar.gz gitbook-014b2f9c6902235216fee390078ece0049344c0b.tar.bz2 |
Merge pull request #35 from GitbookIO/feature/multilangs
Fix #34: Feature/multilangs
Diffstat (limited to 'bin/utils.js')
-rw-r--r-- | bin/utils.js | 2 |
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); }; |