refactor: print client error without formatting

This commit is contained in:
2025-03-08 15:39:26 -05:00
parent 9ce39ebb67
commit a0fda6f285

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(())
} }