Skip to content
This repository was archived by the owner on Sep 19, 2019. It is now read-only.

Commit 5bb7ea3

Browse files
committed
Printing issues details in case of panic
1 parent 5548aba commit 5bb7ea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var error = module.exports.error = function(msg) {
6666
}
6767
if (msg.error._issues) {
6868
_.forEach(msg.error._issues, function(value, key) {
69-
console.error(' - ' + key + ': ' + value);
69+
console.error(' - ' + key + ': ' + JSON.stringify(value, null, 4));
7070
});
7171
}
7272
if (msg.error.fields) {

0 commit comments

Comments
 (0)