Преглед изворни кода

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