diff options
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) } |