From a8c0fc10344ef6e2bf7057ec8ceffe60bd87b02d Mon Sep 17 00:00:00 2001 From: kalo <24719519+KaloyanTanev@users.noreply.github.com> Date: Fri, 14 Aug 2026 15:32:11 +0300 Subject: [PATCH] p2p: remove noisy QUIC happy-path debug logs --- p2p/p2p.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/p2p/p2p.go b/p2p/p2p.go index 3cadedd67..eb37152f1 100644 --- a/p2p/p2p.go +++ b/p2p/p2p.go @@ -461,7 +461,6 @@ func UpgradeToQUICConnections(p2pNode host.Host, peerIDs []peer.ID) lifecycle.Ho forceQUICConn := func(ctx context.Context) { if !isQUICEnabled(p2pNode) { - log.Debug(ctx, "QUIC feature not enabled on this node") return // doesn't support QUIC } @@ -481,8 +480,6 @@ func UpgradeToQUICConnections(p2pNode host.Host, peerIDs []peer.ID) lifecycle.Ho } if hasDirectQUICConn(conns) { - log.Debug(ctx, "Direct QUIC connection to peer already established", z.Str("peer", PeerName(p)), z.Any("conns", conns)) - // Remove unwanted TCP connections for _, conn := range conns { addr := conn.RemoteMultiaddr()