Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed Oct 30, 2024
1 parent b6253c2 commit 3d3806c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion replay/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down

0 comments on commit 3d3806c

Please sign in to comment.