Skip to content

Commit

Permalink
Made the search path prints debug-level
Browse files Browse the repository at this point in the history
  • Loading branch information
AMNatty committed Feb 5, 2025
1 parent 4bee7ea commit c43e8c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ fn file_search_path(file_name: impl AsRef<Path>) -> Result<PathBuf, WError> {
] {
let full_path = path.join(file_name);
if full_path.is_file() {
info!("File found in: {}", full_path.display());
debug!("File found in: {}", full_path.display());
return Ok(full_path);
} else {
info!("No file found in: {}", full_path.display());
debug!("No file found in: {}", full_path.display());
}
}

Expand Down

0 comments on commit c43e8c7

Please sign in to comment.