فهرست منبع

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

Co-authored-by: Lazić <markolazic@protonmail.com>
Marko Lazić 1 سال پیش
والد
کامیت
cec6b92e42
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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,