From 6123ce8649db984404bfa6e2fbafc08b0856d199 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 10 May 2016 12:12:36 -0400 Subject: [PATCH] Add logging for shutting down non-root pipelines in the script thread. --- components/script/script_thread.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index a3b374ac161..1d3bc4c4bcf 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1358,6 +1358,7 @@ impl ScriptThread { // otherwise find just the matching page and exit all sub-pages if let Some(ref mut child_page) = page.remove(id) { + debug!("shutting down layout for child context {:?}", id); shut_down_layout(&*child_page); } false