From 174975061ead2d6965c3a557a6d2e93d1fd07885 Mon Sep 17 00:00:00 2001 From: Clark Gaebel Date: Sun, 19 Oct 2014 09:05:14 -0700 Subject: [PATCH] Dump the flow tree with println, instead of error --- components/layout/flow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/flow.rs b/components/layout/flow.rs index 49a182d54aa..d0da77e820b 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -1022,7 +1022,7 @@ impl<'a> ImmutableFlowUtils for &'a Flow + 'a { indent.push_str("| ") } - error!("{}+ {}", indent, self.to_string()); + println!("{}+ {}", indent, self.to_string()); for kid in imm_child_iter(self) { kid.dump_with_level(level + 1)