diff options
author | Keegan McAllister <kmcallister@mozilla.com> | 2014-11-05 10:36:20 -0800 |
---|---|---|
committer | Keegan McAllister <kmcallister@mozilla.com> | 2014-11-05 10:36:20 -0800 |
commit | 01ea963711596e2772c6539ab63e55a11e6df9e4 (patch) | |
tree | 97908d6f987a9f902470cda4b0fbb82d5a32075f /components/script/parse/html.rs | |
parent | e483a189a3c24d0fe475cf2a8dedb11821f7ee21 (diff) | |
download | servo-01ea963711596e2772c6539ab63e55a11e6df9e4.tar.gz servo-01ea963711596e2772c6539ab63e55a11e6df9e4.zip |
Only print HTML parse errors with RUST_LOG=script::parse
Diffstat (limited to 'components/script/parse/html.rs')
-rw-r--r-- | components/script/parse/html.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/parse/html.rs b/components/script/parse/html.rs index 94ce2e2cfcd..71792097b2c 100644 --- a/components/script/parse/html.rs +++ b/components/script/parse/html.rs @@ -136,7 +136,7 @@ impl<'a> TreeSink<TrustedNodeAddress> for servohtmlparser::Sink { } fn parse_error(&mut self, msg: MaybeOwned<'static>) { - error!("Parse error: {:s}", msg); + debug!("Parse error: {:s}", msg); } fn set_quirks_mode(&mut self, mode: QuirksMode) { |