ソースを参照

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 });
     }