aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_thread.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2025-01-09 03:49:59 -0500
committerGitHub <noreply@github.com>2025-01-09 08:49:59 +0000
commit3d1b7f8f06c7d7e43f35af4832051e529004567c (patch)
tree4b6234b59188bf8805674649d5b68f46eb4afcc4 /components/script/script_thread.rs
parentceec1759f60d436add95d9076d8d45e515e85e59 (diff)
downloadservo-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/script_thread.rs')
-rw-r--r--components/script/script_thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs
index 6587c604d8b..74c63bf1ebc 100644
--- a/components/script/script_thread.rs
+++ b/components/script/script_thread.rs
@@ -176,7 +176,7 @@ pub(crate) fn with_script_thread<R: Default>(f: impl FnOnce(&ScriptThread) -> R)
/// or else the garbage collector may end up collecting objects that are still reachable.
pub unsafe fn trace_thread(tr: *mut JSTracer) {
with_script_thread(|script_thread| {
- debug!("tracing fields of ScriptThread");
+ trace!("tracing fields of ScriptThread");
script_thread.trace(tr);
})
}