Skip to content

Commit 3fa537b

Browse files
committed
remove stray debug calls
1 parent 1d138ee commit 3fa537b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/searcher.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -503,8 +503,6 @@ impl<'a> Searcher<'a> {
503503
traversal_mode: TraversalMode,
504504
process_queue: bool,
505505
) -> io::Result<()> {
506-
dbg!(&git_repository.is_some());
507-
508506
// Prevents infinite loops when following symlinks
509507
if self.current_follow_symlinks {
510508
if self.visited_dirs.contains(&dir.to_path_buf()) {
@@ -629,7 +627,6 @@ impl<'a> Searcher<'a> {
629627
Some(repo) => Some(repo),
630628
None if apply_gitignore => {
631629
repo = Repository::open(&path).ok();
632-
dbg!("[DFS] REPO has been found!!!");
633630
repo.as_ref()
634631
},
635632
_ => None,
@@ -687,7 +684,6 @@ impl<'a> Searcher<'a> {
687684
Some(repo) => Some(repo),
688685
None if apply_gitignore => {
689686
repo = Repository::open(&path).ok();
690-
dbg!("[BFS] REPO has been found!!!");
691687
repo.as_ref()
692688
},
693689
_ => None,

0 commit comments

Comments
 (0)