use Display format for logging startup error

This commit is contained in:
2022-07-17 21:21:28 +02:00
parent 461055a7e9
commit 6d8e660393
+1 -1
View File
@@ -30,7 +30,7 @@ async fn main() {
{
Ok(client) => client,
Err(err) => {
error!("Unable to start client: {:?}", err);
error!("Unable to start client: {}", err);
process::exit(2);
}
};