diff options
author | bors-servo <release+servo@mozilla.com> | 2014-05-08 11:16:41 -0400 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2014-05-08 11:16:41 -0400 |
commit | 0a647baacb6eeb6d96dd3e0e2c6eb1e2f2b7f2e5 (patch) | |
tree | 2ff17538df33608b28d59df0c1267503e83afdfc /src/components/script/html/hubbub_html_parser.rs | |
parent | 6cbcd98132389c7914c232ea8c25365a96df49d5 (diff) | |
parent | 376d5f4a083a949d275b4edb568d625c15ade769 (diff) | |
download | servo-0a647baacb6eeb6d96dd3e0e2c6eb1e2f2b7f2e5.tar.gz servo-0a647baacb6eeb6d96dd3e0e2c6eb1e2f2b7f2e5.zip |
auto merge of #2355 : glennw/servo/http-fail-errors, r=jdm
...during task failure.
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r-- | src/components/script/html/hubbub_html_parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs index b1af9774214..09f71851d7a 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -510,8 +510,8 @@ pub fn parse_html(page: &Page, debug!("received data"); parser.parse_chunk(data.as_slice()); } - Done(Err(..)) => { - fail!("Failed to load page URL {:s}", url.to_str()); + Done(Err(err)) => { + fail!("Failed to load page URL {:s}, error: {:s}", url.to_str(), err); } Done(..) => { break; |