aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/server.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server.rs b/src/server.rs
index 3d195b9..4f8326b 100644
--- a/src/server.rs
+++ b/src/server.rs
@@ -512,7 +512,7 @@ fn tcp_listen_and_send(
let l = backoff::future::retry_notify(listen_backoff(), || async {
Ok(TcpListener::bind(&addr).await?)
}, |e, duration| {
- error!("{:?}. Retry in {:?}", e, duration);
+ error!("{:#}. Retry in {:?}", e, duration);
})
.await
.with_context(|| "Failed to listen for the service");
@@ -632,7 +632,7 @@ async fn run_udp_connection_pool<T: Transport>(
.with_context(|| "Failed to listen for the service")?)
},
|e, duration| {
- warn!("{:?}. Retry in {:?}", e, duration);
+ warn!("{:#}. Retry in {:?}", e, duration);
},
)
.await