소스 검색

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,