aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/errors.rs')
-rw-r--r--components/style/errors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/errors.rs b/components/style/errors.rs
index ae0df3797e9..1f238aeca4e 100644
--- a/components/style/errors.rs
+++ b/components/style/errors.rs
@@ -28,5 +28,5 @@ impl<T, I: Iterator<Result<T, SyntaxError>>> Iterator<T> for ErrorLoggerIterator
/// to log CSS parse errors to stderr.
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)
+ info!("{}:{} {}", location.line, location.column, message)
}