Skip to content

Commit

Permalink
Add debug log to show how many files its checking
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenperera committed Feb 3, 2025
1 parent 68c2da2 commit 1e2ef66
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rustywind-cli/src/heard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ impl Heard {
}

pub fn run_on_file_paths(self, file_paths: Vec<PathBuf>) {
log::debug!("checking {} files", file_paths.len());

let total_chunks = self.cpus;
let chunks_of = file_paths.len() / total_chunks;
let options = &self.options;
Expand Down

0 comments on commit 1e2ef66

Please sign in to comment.