diff options
| author | Marijn Haverbeke <[email protected]> | 2011-04-19 12:02:06 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <[email protected]> | 2011-04-19 16:57:13 +0200 |
| commit | 6511d471bafd446026462ce0dba8ef5e2ebf462f (patch) | |
| tree | 7d1be7a2ed367965ef50b1e6f12c87e74391f750 /src/comp/front/codemap.rs | |
| parent | add log_err to rustc (diff) | |
| download | rust-6511d471bafd446026462ce0dba8ef5e2ebf462f.tar.xz rust-6511d471bafd446026462ce0dba8ef5e2ebf462f.zip | |
replace error logging with log_err in stdlib and rustc
Diffstat (limited to 'src/comp/front/codemap.rs')
| -rw-r--r-- | src/comp/front/codemap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/codemap.rs b/src/comp/front/codemap.rs index 8d18e51b..8088a6f0 100644 --- a/src/comp/front/codemap.rs +++ b/src/comp/front/codemap.rs @@ -46,7 +46,7 @@ fn lookup_pos(codemap map, uint pos) -> loc { } } } - log #fmt("Failed to find a location for character %u", pos); + log_err #fmt("Failed to find a location for character %u", pos); fail; } |