Only print HTML parse errors with RUST_LOG=script::parse

This commit is contained in:
Keegan McAllister 2014-11-05 10:36:20 -08:00
parent e483a189a3
commit 01ea963711

View file

@ -136,7 +136,7 @@ impl<'a> TreeSink<TrustedNodeAddress> for servohtmlparser::Sink {
} }
fn parse_error(&mut self, msg: MaybeOwned<'static>) { 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) { fn set_quirks_mode(&mut self, mode: QuirksMode) {