aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_thread.rs
diff options
context:
space:
mode:
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);
})
}