浏览代码

Merge pull request #739 from Demonthos/remove-logs-from-interpreter

Remove logs from interpreter
Jon Kelley 2 年之前
父节点
当前提交
b50f38c675
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      packages/interpreter/src/interpreter.js

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

@@ -144,8 +144,6 @@ class Interpreter {
     this.nodes[root].textContent = text;
     this.nodes[root].textContent = text;
   }
   }
   SetAttribute(id, field, value, ns) {
   SetAttribute(id, field, value, ns) {
-    console.log("set attribute", id, field, value, ns);
-
     if (value === null) {
     if (value === null) {
       this.RemoveAttribute(id, field, ns);
       this.RemoveAttribute(id, field, ns);
     }
     }
@@ -228,7 +226,6 @@ class Interpreter {
   }
   }
 
 
   MakeTemplateNode(node) {
   MakeTemplateNode(node) {
-    console.log("making template node", node);
     switch (node.type) {
     switch (node.type) {
       case "Text":
       case "Text":
         return document.createTextNode(node.text);
         return document.createTextNode(node.text);