aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/traversal.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/traversal.rs')
-rw-r--r--components/layout/traversal.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs
index 0d33c02e068..f045cc9d856 100644
--- a/components/layout/traversal.rs
+++ b/components/layout/traversal.rs
@@ -224,11 +224,7 @@ fn construct_flows_at<'dom>(context: &LayoutContext, node: impl LayoutNode<'dom>
let mut flow_constructor = FlowConstructor::new(context);
if nonincremental_layout || !flow_constructor.repair_if_possible(&tnode) {
flow_constructor.process(&tnode);
- debug!(
- "Constructed flow for {:?}: {:x}",
- tnode,
- tnode.flow_debug_id()
- );
+ debug!("Constructed flow for {:?}", tnode,);
}
}