Przeglądaj źródła

remove logs from interpreter

Evan Almloff 2 lat temu
rodzic
commit
d2b5af6615
1 zmienionych plików z 0 dodań i 3 usunięć
  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);