diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-09-29 13:18:51 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-09-30 23:21:19 -0700 |
| commit | 86e613c632ce156360bdf6e80f6f82ed5ab3b838 (patch) | |
| tree | 60d6a59188a2f80457f279f86d24737fa6db5343 /src/compiletest/errors.rs | |
| parent | da24c0d32f8a5ce74268f416bbdab2e61a34976d (diff) | |
| download | rust-86e613c632ce156360bdf6e80f6f82ed5ab3b838.tar.gz rust-86e613c632ce156360bdf6e80f6f82ed5ab3b838.zip | |
compiletest: Remove usage of fmt!
Diffstat (limited to 'src/compiletest/errors.rs')
| -rw-r--r-- | src/compiletest/errors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiletest/errors.rs b/src/compiletest/errors.rs index b044f19dcd6..02195e684e3 100644 --- a/src/compiletest/errors.rs +++ b/src/compiletest/errors.rs @@ -56,7 +56,7 @@ fn parse_expected(line_num: uint, line: ~str) -> ~[ExpectedError] { while idx < len && line[idx] == (' ' as u8) { idx += 1u; } let msg = line.slice(idx, len).to_owned(); - debug!("line=%u kind=%s msg=%s", line_num - adjust_line, kind, msg); + debug2!("line={} kind={} msg={}", line_num - adjust_line, kind, msg); return ~[ExpectedError{line: line_num - adjust_line, kind: kind, msg: msg}]; |
