Explorar el Código

chore: convert debug to trace

Jonathan Kelley hace 3 años
padre
commit
0883ff76e6
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      packages/core/src/virtual_dom.rs

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

@@ -475,7 +475,7 @@ impl VirtualDom {
                 h1.cmp(&h2).reverse()
             });
 
-            log::debug!("dirty_scopes: {:?}", self.dirty_scopes);
+            log::trace!("dirty_scopes: {:?}", self.dirty_scopes);
 
             if let Some(scopeid) = self.dirty_scopes.pop() {
                 if !ran_scopes.contains(&scopeid) {
@@ -487,7 +487,7 @@ impl VirtualDom {
 
                     let DiffState { mutations, .. } = diff_state;
 
-                    log::debug!("succesffuly resolved scopes {:?}", mutations.dirty_scopes);
+                    log::trace!("succesffuly resolved scopes {:?}", mutations.dirty_scopes);
                     for scope in &mutations.dirty_scopes {
                         self.dirty_scopes.remove(scope);
                     }