about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2014-06-23 13:37:30 -0700
committerCorey Richardson <corey@octayn.net>2014-07-09 00:06:29 -0700
commit5f970e690f2ca7ddb7884b6b8752baf3771ad459 (patch)
tree6ba0cc5ca26e6dc762e1aeb33442bcc43879e8bb /src/libsyntax
parentae9a92bd4ef25b8aba0ef06e7ad26319691e9e5a (diff)
downloadrust-5f970e690f2ca7ddb7884b6b8752baf3771ad459.tar.gz
rust-5f970e690f2ca7ddb7884b6b8752baf3771ad459.zip
codemap: be less annoying in debug logging
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/codemap.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs
index 2f1e01b239d..53457760294 100644
--- a/src/libsyntax/codemap.rs
+++ b/src/libsyntax/codemap.rs
@@ -430,7 +430,6 @@ impl CodeMap {
 
     /// Converts an absolute BytePos to a CharPos relative to the filemap and above.
     pub fn bytepos_to_file_charpos(&self, bpos: BytePos) -> CharPos {
-        debug!("codemap: converting {:?} to char pos", bpos);
         let idx = self.lookup_filemap_idx(bpos);
         let files = self.files.borrow();
         let map = files.get(idx);
@@ -439,7 +438,7 @@ impl CodeMap {
         let mut total_extra_bytes = 0;
 
         for mbc in map.multibyte_chars.borrow().iter() {
-            debug!("codemap: {:?}-byte char at {:?}", mbc.bytes, mbc.pos);
+            debug!("{}-byte char at {}", mbc.bytes, mbc.pos);
             if mbc.pos < bpos {
                 // every character is at least one byte, so we only
                 // count the actual extra bytes.
@@ -514,11 +513,11 @@ impl CodeMap {
         let chpos = self.bytepos_to_file_charpos(pos);
         let linebpos = *f.lines.borrow().get(a);
         let linechpos = self.bytepos_to_file_charpos(linebpos);
-        debug!("codemap: byte pos {:?} is on the line at byte pos {:?}",
+        debug!("byte pos {} is on the line at byte pos {}",
                pos, linebpos);
-        debug!("codemap: char pos {:?} is on the line at char pos {:?}",
+        debug!("char pos {} is on the line at char pos {}",
                chpos, linechpos);
-        debug!("codemap: byte is on line: {:?}", line);
+        debug!("byte is on line: {}", line);
         assert!(chpos >= linechpos);
         Loc {
             file: f,