Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-zip committed Nov 26, 2023
1 parent 8ed2e63 commit df6f5e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maid_runner/src/core/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ pub fn find_all_matching_lines(file_path: &str, pattern: &str) -> Result<Vec<Str
};

match logger(data) {
Ok(result) => {
Ok(_result) => {
standard_messages( "saved", "Log saved","", "cute");
}
Err(err) => println!("Error"),
Err(_err) => println!("Error"),
}

Ok(matching_lines)
Expand Down

0 comments on commit df6f5e0

Please sign in to comment.