Browse Source

fix: remove console log

Jonathan Kelley 3 years ago
parent
commit
5a908d1e8b
1 changed files with 0 additions and 1 deletions
  1. 0 1
      packages/interpreter/src/interpreter.js

+ 0 - 1
packages/interpreter/src/interpreter.js

@@ -102,7 +102,6 @@ export class Interpreter {
   SetAttribute(root, field, value, ns) {
     const name = field;
     const node = this.nodes[root];
-    console.log(ns);
     if (ns === "style") {
       // @ts-ignore
       node.style[name] = value;