From cb5fa23a1ef395fad0417fd20268c027cd306bc4 Mon Sep 17 00:00:00 2001 From: Clark Gaebel Date: Tue, 28 Oct 2014 10:24:50 -0700 Subject: [PATCH] use println instead of error --- components/layout/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/wrapper.rs b/components/layout/wrapper.rs index 2c32376c843c..b204cb141d41 100644 --- a/components/layout/wrapper.rs +++ b/components/layout/wrapper.rs @@ -212,7 +212,7 @@ impl<'ln> LayoutNode<'ln> { } s.push_str(self.debug_str().as_slice()); - error!("{:s}", s); + println!("{:s}", s); for kid in self.children() { kid.dump_indent(indent + 1);