From fc925af6c8fc51574c6938672caf086e37437c67 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 11 Feb 2025 07:11:08 +0000 Subject: [PATCH] chore(phoenix-channel): log the portal's IP address on connect (#8088) --- rust/phoenix-channel/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))