Skip to content

Commit

Permalink
Remove unnecessary console outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
akoken committed Oct 16, 2024
1 parent 5b00b93 commit e7e5500
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ fn main() {

pub fn run(config: Config) -> Result<(), Box<dyn Error>> {
let contents = fs::read_to_string(config.filename)?;
println!("Config ignore case: {}", &config.ignore_case);
let results: Vec<&str> = if config.ignore_case {
search_case_insensitive(&config.pattern, &contents)
} else {
Expand Down

0 comments on commit e7e5500

Please sign in to comment.