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

Co-authored-by: Lazić <markolazic@protonmail.com>
This commit is contained in:
Marko Lazić 2024-03-29 18:17:00 +01:00 committed by GitHub
parent a07e9aade4
commit cec6b92e42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,