Skip to content

Commit 6ac6f32

Browse files
committed
fmt
1 parent 7ecb88f commit 6ac6f32

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

kani-driver/src/cbmc_property_renderer.rs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,14 @@ pub fn kani_cbmc_output_filter(
192192
if suppress_terminal {
193193
// Write to log file instead of terminal
194194
if let Some(log_path) = log_file
195-
&& let Err(e) = write_to_log_file(log_path, &fmt_item) {
196-
eprintln!(
197-
"Failed to write CBMC output to log file {}: {}",
198-
log_path.display(),
199-
e
200-
);
201-
}
195+
&& let Err(e) = write_to_log_file(log_path, &fmt_item)
196+
{
197+
eprintln!(
198+
"Failed to write CBMC output to log file {}: {}",
199+
log_path.display(),
200+
e
201+
);
202+
}
202203
} else {
203204
// Normal terminal output
204205
println!("{fmt_item}");

0 commit comments

Comments
 (0)