Skip to content

Commit

Permalink
feat: make it less verbose (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianoliveira committed Sep 2, 2023
1 parent a82a7a2 commit c75f4e6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/stdout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ pub fn verbose(msg: &str, verbose: bool) {

pub fn present_results(results: Vec<Result<(), String>>) {
let errors: Vec<Result<(), String>> = results.iter().cloned().filter(|r| r.is_err()).collect();
println!();
println!("Funzzy results ----------------------------");
if !errors.is_empty() {
println!("Failed tasks: {:?}", errors.len());
Expand All @@ -28,6 +27,4 @@ pub fn present_results(results: Vec<Result<(), String>>) {
} else {
println!("All tasks finished successfully.");
}
println!("-------------------------------------------");
println!();
}

0 comments on commit c75f4e6

Please sign in to comment.