Dump the flow tree with println, instead of error

This commit is contained in:
Clark Gaebel 2014-10-19 09:05:14 -07:00
parent 852378209b
commit 174975061e

View file

@ -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)