From de490cbbbf6e7f369075eb9a043fc1694e89c110 Mon Sep 17 00:00:00 2001 From: Gabi Date: Wed, 18 Sep 2024 14:26:02 -0700 Subject: [PATCH] chore(connlib): reduces noisy log-level on gateway when clients restart (#6733) Fixes #6372 --- rust/connlib/tunnel/src/gateway.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/connlib/tunnel/src/gateway.rs b/rust/connlib/tunnel/src/gateway.rs index 5b6dbe795..02f358c86 100644 --- a/rust/connlib/tunnel/src/gateway.rs +++ b/rust/connlib/tunnel/src/gateway.rs @@ -168,7 +168,7 @@ impl GatewayState { } let Some(peer) = self.peers.peer_by_ip_mut(dst) else { - tracing::warn!(%dst, "Couldn't find connection by IP"); + tracing::trace!(%dst, "Couldn't find connection by IP"); return None; };