diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util/sugar.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/util/sugar.js b/src/util/sugar.js index ad36d16b..f3b9e732 100644 --- a/src/util/sugar.js +++ b/src/util/sugar.js @@ -431,6 +431,7 @@ export function _withAggregate(mode, aggregateOpts, fn) { export function showAggregate(topError, { pathToFileURL = f => f, showTraces = true, + print = true, } = {}) { const recursive = (error, {level}) => { let header = showTraces @@ -475,7 +476,13 @@ export function showAggregate(topError, { } }; - console.error(recursive(topError, {level: 0})); + const message = recursive(topError, {level: 0}); + + if (print) { + console.error(message); + } else { + return message; + } } export function decorateErrorWithIndex(fn) { |