We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23afcf7 commit 497b805Copy full SHA for 497b805
src/helpers/view-helper.js
@@ -37,6 +37,10 @@ module.exports = {
37
38
this.log();
39
console.error(`${clc.red('ERROR:')} ${message}`);
40
+ if (error.original.detail) {
41
+ console.error(`${clc.red('ERROR DETAIL:')} ${error.original.detail}`);
42
+ }
43
+
44
extraMessages.forEach((message) =>
45
console.error(`${clc.red('EXTRA MESSAGE:')} ${message}`)
46
);
0 commit comments