aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/style/errors.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2013-10-24 17:43:48 +0200
committerSimon Sapin <simon.sapin@exyr.org>2013-11-01 00:30:20 +0000
commitabb1bdefee24ff56c16e933190a9c113c6e20ba4 (patch)
tree1c211b126515076ca0696a6b5c60cd6de558cf14 /src/components/style/errors.rs
parent352acbb8335fcf78f2d62dc781fa9d86b9368f9c (diff)
downloadservo-abb1bdefee24ff56c16e933190a9c113c6e20ba4.tar.gz
servo-abb1bdefee24ff56c16e933190a9c113c6e20ba4.zip
Log CSS errors on stderr, with serialized bits of CSS.
Diffstat (limited to 'src/components/style/errors.rs')
-rw-r--r--src/components/style/errors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/style/errors.rs b/src/components/style/errors.rs
index fdbf1c5167b..d899054393c 100644
--- a/src/components/style/errors.rs
+++ b/src/components/style/errors.rs
@@ -22,5 +22,5 @@ impl<T, I: Iterator<Result<T, SyntaxError>>> Iterator<T> for ErrorLoggerIterator
pub fn log_css_error(location: SourceLocation, message: &str) {
// TODO eventually this will got into a "web console" or something.
- info!("{:u}:{:u} {:s}", location.line, location.column, message)
+ error!("{:u}:{:u} {:s}", location.line, location.column, message)
}