Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dhowe committed Oct 26, 2020
1 parent 4b650b3 commit 0ea3e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/visitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Visitor extends RiScriptVisitor {
// if we've already resolved (likely as an inline) just return
let lookup = this.context[id];
if (typeof lookup !== 'undefined' && !this.parent.isParseable(lookup)) {
this.trace && console.log('resolveInline[0]: $' + id + " -> '" + lookup + "' (already defined)");
this.trace && console.log('symbolDefined[0]: $' + id + " -> '" + lookup + "' (already defined)");
visited = lookup;
}
else {
Expand Down

0 comments on commit 0ea3e29

Please sign in to comment.