Remove Timer from Progressbar

This commit is contained in:
Chaoscaot
2023-04-04 21:44:43 +02:00
parent e4b26755ea
commit 64158cf45b

View File

@ -248,7 +248,7 @@ fn main() {
let bar = ProgressBar::new(schematics.len() as u64);
bar.set_style(ProgressStyle::with_template("[{elapsed}, ETA: {eta}] {wide_bar} {pos}/{len} {per_sec}").unwrap());
bar.set_draw_target(ProgressDrawTarget::stderr_with_hz(5));
//bar.set_draw_target(ProgressDrawTarget::stderr_with_hz(5));
let matches: Vec<SearchResult> = schematics.par_iter().progress_with(bar).map(|schem| {
match schem {