From a4eb6509c6a2a882184a0bbc46eb55dfcabb9fda Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 1 Aug 2025 22:51:49 +0000 Subject: [PATCH] chore(snownet): fix buffering log message (#10060) What we are actually buffering here are unencrypted IP packets that are waiting for the tunnel to be established. --- rust/connlib/snownet/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/connlib/snownet/src/node.rs b/rust/connlib/snownet/src/node.rs index 00d07f2e1..50ea8fb45 100644 --- a/rust/connlib/snownet/src/node.rs +++ b/rust/connlib/snownet/src/node.rs @@ -442,7 +442,7 @@ where ip_buffer.push(packet); let num_buffered = ip_buffer.len(); - tracing::debug!(%num_buffered, %cid, "ICE is still in progress, buffering WG handshake"); + tracing::debug!(%num_buffered, %cid, "ICE is still in progress, buffering IP packet"); return Ok(None); }