File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -229,9 +229,6 @@ impl KaniSession {
229229 ) -> Result < VerificationResult > {
230230 let thread_index = rayon:: current_thread_index ( ) . unwrap_or_default ( ) ;
231231
232- // Determine if we should suppress console output (when using log file with progress indicator)
233- let suppress_console = self . args . log_file . is_some ( ) && std:: io:: stdout ( ) . is_terminal ( ) ;
234-
235232 if !self . args . common_args . quiet {
236233 // If the harness is automatically generated, pretty_name refers to the function under verification.
237234 let mut msg = if harness. is_automatically_generated {
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0 OR MIT
33//! Progress indicator for verification harness execution
44
5- use indicatif:: { MultiProgress , ProgressBar , ProgressStyle } ;
6- use std:: io:: IsTerminal ;
5+ use indicatif:: { ProgressBar , ProgressStyle } ;
76use std:: sync:: Arc ;
87use std:: sync:: atomic:: { AtomicUsize , Ordering } ;
98
@@ -73,8 +72,7 @@ impl ProgressIndicator {
7372 let stats = VerificationStats :: new ( total_harnesses) ;
7473
7574 if show_progress {
76- let multi_progress = MultiProgress :: new ( ) ;
77- let progress_bar = multi_progress. add ( ProgressBar :: new ( total_harnesses as u64 ) ) ;
75+ let progress_bar = ProgressBar :: new ( total_harnesses as u64 ) ;
7876
7977 progress_bar. set_style (
8078 ProgressStyle :: with_template (
You can’t perform that action at this time.
0 commit comments