diff --git a/hydro_deploy/core/src/progress.rs b/hydro_deploy/core/src/progress.rs index e4f8bdd6b4f6..545773db67d8 100644 --- a/hydro_deploy/core/src/progress.rs +++ b/hydro_deploy/core/src/progress.rs @@ -370,7 +370,9 @@ impl ProgressTracker { .lock() .unwrap(); - if progress_bar.multi_progress.println(msg.as_ref()).is_err() { + if progress_bar.current_count == 0 + || progress_bar.multi_progress.println(msg.as_ref()).is_err() + { println!("{}", msg.as_ref()); } }