about summary refs log tree commit diff stats
path: root/src/web
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/web/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/mod.rs b/src/web/mod.rs
index 0f9835a..17244fd 100644
--- a/src/web/mod.rs
+++ b/src/web/mod.rs
@@ -180,7 +180,7 @@ pub(crate) async fn main(config: Arc<BackConfig>) -> Result<(), error::Error> {
 
         tokio::task::spawn(async move {
             if let Err(err) = http1::Builder::new().serve_connection(io, service).await {
-                error!("Error serving connection: {err:?}");
+                error!("Error serving connection: {err}");
             }
         });
     }