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 e4cf430 commit bb1e5a8Copy full SHA for bb1e5a8
src/utils/utils.ts
@@ -469,7 +469,7 @@ function outputFormatterError(err: any): string {
469
if (err.data && !utils.isEmptyObject(err.data)) {
470
output += `${indent}data\t${JSON.stringify(err.data)}\n`;
471
}
472
- if (err.cause && !utils.isEmptyObject(err.cause)) {
+ if (err.cause) {
473
output += `${indent}cause: `;
474
if (err.cause instanceof ErrorPolykey) {
475
err = err.cause;
0 commit comments