Do not show progress with parallel analysis

This commit is contained in:
Aleksey Kladov 2020-07-30 10:30:01 +02:00
parent 7204374719
commit e9983f98a9

View file

@ -120,6 +120,7 @@ pub fn analysis_stats(
let mut bar = match verbosity {
Verbosity::Quiet | Verbosity::Spammy => ProgressReport::hidden(),
_ if parallel => ProgressReport::hidden(),
_ => ProgressReport::new(funcs.len() as u64),
};