From 3d1b7f8f06c7d7e43f35af4832051e529004567c Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 9 Jan 2025 03:49:59 -0500 Subject: script: Downgrade noisy debug logs. (#34914) Signed-off-by: Josh Matthews --- components/script/script_thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/script/script_thread.rs') 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(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); }) } -- cgit v1.2.3