From 3d3806c6568ea55b9705e580d021d6210c6a0945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Gonz=C3=A1lez=20Calder=C3=B3n?= Date: Wed, 30 Oct 2024 16:21:41 -0300 Subject: [PATCH] Fix error message --- replay/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/replay/src/main.rs b/replay/src/main.rs index 6364315..a968522 100644 --- a/replay/src/main.rs +++ b/replay/src/main.rs @@ -316,7 +316,7 @@ fn show_execution_data( let execution_info = match execution_info { Ok(x) => x, Err(error_reason) => { - error!("execution failed unexpectedly: {}", error_reason); + error!("execution failed: {}", error_reason); return; } };