Print Progressbar to stdout

This commit is contained in:
Chaoscaot
2023-04-04 17:29:04 +02:00
parent 5c9bcfc2ec
commit 5607dcc72c

View File

@ -248,7 +248,7 @@ fn main() {
let bar = ProgressBar::new(schematics.len() as u64); 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_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::stdout_with_hz(5));
let matches: Vec<SearchResult> = schematics.par_iter().progress_with(bar).map(|schem| { let matches: Vec<SearchResult> = schematics.par_iter().progress_with(bar).map(|schem| {
match schem { match schem {