diff --git a/rust/phoenix-channel/src/lib.rs b/rust/phoenix-channel/src/lib.rs index 64c5810ac..54ed3ee3e 100644 --- a/rust/phoenix-channel/src/lib.rs +++ b/rust/phoenix-channel/src/lib.rs @@ -92,7 +92,7 @@ async fn create_and_connect_websocket( user_agent: String, socket_factory: Arc>, ) -> Result>, InternalError> { - tracing::debug!(host = url.host().map(tracing::field::display), %user_agent, "Connecting to portal"); + tracing::debug!(host = url.host().map(tracing::field::display), ?addresses, %user_agent, "Connecting to portal"); let duration = Duration::from_secs(5); let socket = tokio::time::timeout(duration, connect(addresses, &*socket_factory))