use println instead of error

This commit is contained in:
Clark Gaebel 2014-10-28 10:24:50 -07:00
parent a8f80b89f4
commit cb5fa23a1e

View file

@ -212,7 +212,7 @@ impl<'ln> LayoutNode<'ln> {
} }
s.push_str(self.debug_str().as_slice()); s.push_str(self.debug_str().as_slice());
error!("{:s}", s); println!("{:s}", s);
for kid in self.children() { for kid in self.children() {
kid.dump_indent(indent + 1); kid.dump_indent(indent + 1);