Skip to content

Commit c4f56c4

Browse files
authored
Drop leftover debug print statements (#39)
1 parent f36c799 commit c4f56c4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,13 +317,10 @@ fn parse(
317317
if let Some(ref mut cache) = cache {
318318
let cache = cache.lock().unwrap();
319319
if let Some(entry) = cache.get(file) {
320-
println!("Cached {}", file.display());
321320
return Ok(entry.clone());
322321
}
323322
}
324323

325-
println!("Parsing {}...", file.display());
326-
327324
let fp = fs::File::open(file)?;
328325
let buffer = unsafe { Mmap::map(&fp)? };
329326

0 commit comments

Comments
 (0)