This commit is contained in:
Andras Schmelczer 2025-03-29 14:04:06 +00:00
parent bb5a0bde3a
commit 0311883a16
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 9 additions and 9 deletions

View file

@ -29,7 +29,7 @@ async fn main() -> ExitCode {
match result {
Ok(()) => ExitCode::SUCCESS,
Err(e) => {
eprintln!("{}", e.serialize().to_string());
eprintln!("{}", e.serialize());
ExitCode::FAILURE
}
}