diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2013-10-24 17:43:48 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2013-11-01 00:30:20 +0000 |
commit | abb1bdefee24ff56c16e933190a9c113c6e20ba4 (patch) | |
tree | 1c211b126515076ca0696a6b5c60cd6de558cf14 /src/components/style/errors.rs | |
parent | 352acbb8335fcf78f2d62dc781fa9d86b9368f9c (diff) | |
download | servo-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.rs | 2 |
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) } |