refactor: print client error without formatting

This commit is contained in:
Ryan 2025-03-08 15:39:26 -05:00
parent 9ce39ebb67
commit a0fda6f285
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -110,7 +110,7 @@ async fn main() -> anyhow::Result<()> {
server.as_ref(), server.as_ref(),
) )
.await; .await;
eprintln!("{error:?}"); eprintln!("{error}");
Ok(()) Ok(())
} }