diff --git a/src/walk.rs b/src/walk.rs
index 394c18ce4172b830c1159f05590f36ca7abc74fa..5215f0a3c6c11bec12e2814b93faf8cfec942e5f 100644
--- a/src/walk.rs
+++ b/src/walk.rs
@@ -60,7 +60,6 @@ fn check_path(path: &Path, mode: libc::c_int) -> bool
             result = libc::faccessat(AT_FDCWD, cstring.as_ptr(),
                                      mode, AT_SYMLINK_NOFOLLOW);
         }
-        println!("Checking {:?} -> {:?}", path, result);
         return result == 0;
     }
 }
@@ -78,7 +77,6 @@ fn check_full_path(path: &Path, mode: libc::c_int) -> bool
             _ => break
         }
     }
-    println!("Checking {:?} {}", path, result);
     return result;
 }