소스 검색

fix: remove console log

Jonathan Kelley 3 년 전
부모
커밋
5a908d1e8b
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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;