script: Downgrade noisy debug logs. (#34914)

Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
Josh Matthews 2025-01-09 03:49:59 -05:00 committed by GitHub
parent ceec1759f6
commit 3d1b7f8f06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View file

@ -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);
})
}