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