Skip to content

Commit 6a1842f

Browse files
committed
Use error logger in timeout condition
Signed-off-by: Tim Buchwaldt <[email protected]>
1 parent f6b44a4 commit 6a1842f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-dump-composer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn main() -> Result<(), anyhow::Error> {
3333
match result {
3434
Ok(inner_result) => inner_result,
3535
Err(_error) => {
36-
println!("timeout");
36+
error!("Timeout error during coredump processing.");
3737
process::exit(1);
3838
}
3939
}

0 commit comments

Comments
 (0)