diff options
author | Josh Matthews <josh@joshmatthews.net> | 2025-01-09 03:49:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-09 08:49:59 +0000 |
commit | 3d1b7f8f06c7d7e43f35af4832051e529004567c (patch) | |
tree | 4b6234b59188bf8805674649d5b68f46eb4afcc4 /components/script/dom/bindings/root.rs | |
parent | ceec1759f60d436add95d9076d8d45e515e85e59 (diff) | |
download | servo-3d1b7f8f06c7d7e43f35af4832051e529004567c.tar.gz servo-3d1b7f8f06c7d7e43f35af4832051e529004567c.zip |
script: Downgrade noisy debug logs. (#34914)
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/script/dom/bindings/root.rs')
-rw-r--r-- | components/script/dom/bindings/root.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/root.rs b/components/script/dom/bindings/root.rs index 6ca8a5f9cee..c934dae7fbf 100644 --- a/components/script/dom/bindings/root.rs +++ b/components/script/dom/bindings/root.rs @@ -299,7 +299,7 @@ impl RootCollection { /// SM Callback that traces the rooted reflectors pub unsafe fn trace_roots(tracer: *mut JSTracer) { - debug!("tracing stack roots"); + trace!("tracing stack roots"); STACK_ROOTS.with(|collection| { let collection = &*(*collection.get().unwrap()).roots.get(); for root in collection { |