Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use println instead of error
  • Loading branch information
Clark Gaebel committed Oct 28, 2014
1 parent a8f80b8 commit cb5fa23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/layout/wrapper.rs
Expand Up @@ -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);
Expand Down

5 comments on commit cb5fa23

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from pcwalton
at cgaebel@cb5fa23

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging cgaebel/servo/layout-node-dumping = cb5fa23 into auto

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cgaebel/servo/layout-node-dumping = cb5fa23 merged ok, testing candidate = 2d8bd10

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 2d8bd10

Please sign in to comment.