aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_runtime.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/script_runtime.rs')
-rw-r--r--components/script/script_runtime.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/script_runtime.rs b/components/script/script_runtime.rs
index 28241117744..f02ec3f4c04 100644
--- a/components/script/script_runtime.rs
+++ b/components/script/script_runtime.rs
@@ -892,12 +892,12 @@ unsafe extern "C" fn trace_rust_roots(tr: *mut JSTracer, _data: *mut os::raw::c_
if !THREAD_ACTIVE.with(|t| t.get()) {
return;
}
- debug!("starting custom root handler");
+ trace!("starting custom root handler");
trace_thread(tr);
trace_roots(tr);
trace_refcounted_objects(tr);
settings_stack::trace(tr);
- debug!("done custom root handler");
+ trace!("done custom root handler");
}
#[allow(unsafe_code)]