瀏覽代碼

chore: dont print logs in core

Jonathan Kelley 2 年之前
父節點
當前提交
b6a8391e07
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      packages/core/src/virtual_dom.rs

+ 0 - 2
packages/core/src/virtual_dom.rs

@@ -281,8 +281,6 @@ impl VirtualDom {
     pub fn mark_dirty(&mut self, id: ScopeId) {
         let height = self.scopes[id.0].height;
 
-        println!("marking scope {} dirty with height {}", id.0, height);
-
         self.dirty_scopes.insert(DirtyScope { height, id });
     }