Skip to content

Commit edc2520

Browse files
authored
remove duplicate stacktrace in Verbose
is already handled by `Loquacious`
1 parent 688a04c commit edc2520

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lambda-calculus.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,9 +415,6 @@ function printStackTrace(error, term, stack) {
415415

416416
if ( config.verbosity >= "Loquacious" )
417417
console.error( stack.slice(stackCutoff).reverse().map( v => `\twhile evaluating ${ v }`).join('\n') );
418-
419-
if ( config.verbosity >= "Verbose" )
420-
console.error( stack.slice().reverse().map( v => `\twhile evaluating ${ v }`).join('\n') );
421418
}
422419

423420
Object.defineProperty( Function.prototype, "valueOf", { value: function valueOf() { return toInt(this); } } );

0 commit comments

Comments
 (0)