Ver Fonte

Move dioxus_core::diff::node logs from info to trace #2165 (#2182)

Co-authored-by: Lazić <markolazic@protonmail.com>
Marko Lazić há 1 ano atrás
pai
commit
cec6b92e42
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      packages/core/src/diff/node.rs

+ 1 - 1
packages/core/src/diff/node.rs

@@ -544,7 +544,7 @@ impl VNode {
         let entry = dom.mounts.vacant_entry();
         let mount = MountId(entry.key());
         self.mount.set(mount);
-        tracing::info!(?self, ?mount, "creating template");
+        tracing::trace!(?self, ?mount, "creating template");
         entry.insert(VNodeMount {
             node: self.clone_mounted(),
             parent,