From 45224eb3679fe2c837e105ba024ee248fc4eef89 Mon Sep 17 00:00:00 2001 From: Luca Cominardi Date: Tue, 10 Sep 2024 16:33:20 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Mahmoud Mazouz --- zenoh/src/net/runtime/orchestrator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zenoh/src/net/runtime/orchestrator.rs b/zenoh/src/net/runtime/orchestrator.rs index 5aa2b0dcb6..45d00e407d 100644 --- a/zenoh/src/net/runtime/orchestrator.rs +++ b/zenoh/src/net/runtime/orchestrator.rs @@ -378,7 +378,7 @@ impl Runtime { } else { // try to connect in background if let Err(e) = self.spawn_peer_connector(endpoint.clone()).await { - tracing::error!("Error connecting to {}: {} ", endpoint, e,); + tracing::error!("Error connecting to {}: {}", endpoint, e); return Err(e); } }