diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2014-07-16 00:01:47 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2014-07-21 20:21:35 +0100 |
commit | dc49f4fda603e56ba214a3f110bb2c12968431d0 (patch) | |
tree | 1dd83b848254477624c3fd1f3aa62ba20b5ae1c1 /src/components/layout/layout_task.rs | |
parent | 71a869284e066c8e8afdf1731fdc1bc3a71d604b (diff) | |
download | servo-dc49f4fda603e56ba214a3f110bb2c12968431d0.tar.gz servo-dc49f4fda603e56ba214a3f110bb2c12968431d0.zip |
Start dogfooding rust-url. Fix #1673.
Diffstat (limited to 'src/components/layout/layout_task.rs')
-rw-r--r-- | src/components/layout/layout_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/layout/layout_task.rs b/src/components/layout/layout_task.rs index cb40a8f011d..bed0096ff69 100644 --- a/src/components/layout/layout_task.rs +++ b/src/components/layout/layout_task.rs @@ -563,7 +563,7 @@ impl LayoutTask { mem::transmute(&mut node) }; - debug!("layout: received layout request for: {:s}", data.url.to_str()); + debug!("layout: received layout request for: {:s}", data.url.serialize()); debug!("layout: damage is {:?}", data.damage); debug!("layout: parsed Node tree"); debug!("{:?}", node.dump()); |