chore(connlib): reduces noisy log-level on gateway when clients restart (#6733)

Fixes #6372
This commit is contained in:
Gabi
2024-09-18 14:26:02 -07:00
committed by GitHub
parent 480a065bf8
commit de490cbbbf

View File

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