We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ecb88f commit 6ac6f32Copy full SHA for 6ac6f32
1 file changed
kani-driver/src/cbmc_property_renderer.rs
@@ -192,13 +192,14 @@ pub fn kani_cbmc_output_filter(
192
if suppress_terminal {
193
// Write to log file instead of terminal
194
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
- }
+ && let Err(e) = write_to_log_file(log_path, &fmt_item)
+ {
+ eprintln!(
+ "Failed to write CBMC output to log file {}: {}",
+ log_path.display(),
+ e
+ );
202
+ }
203
} else {
204
// Normal terminal output
205
println!("{fmt_item}");
0 commit comments