Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Nov 11, 2024
1 parent 4400488 commit e872e42
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,9 @@ fn do_manysearch(
output_path,
allow_failed_sigpaths,
) {
Ok(_) => {
eprintln!("XXX HERE");
Ok(0)
}
Ok(_) => Ok(0),
Err(e) => {
eprintln!("Error FOO: {e}");
eprintln!("Error: {e}");
Ok(1)
}
}
Expand All @@ -76,12 +73,9 @@ fn do_manysearch(
allow_failed_sigpaths,
ignore_abundance,
) {
Ok(_) => {
eprintln!("YYY HERE");
Ok(0)
}
Ok(_) => Ok(0),
Err(e) => {
eprintln!("Error FIZ: {e}");
eprintln!("Error: {e}");
Ok(1)
}
}
Expand Down

0 comments on commit e872e42

Please sign in to comment.