change log level to trace to avoid spam (#3568)

This commit is contained in:
Prem Chaitanya Prathi 2025-09-12 14:51:02 +05:30 committed by GitHub
parent ad5e119121
commit 32a1725140
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,12 +38,12 @@ proc mixPoolFilter*(cluster: Option[uint16], peer: RemotePeerInfo): bool =
return false
if cluster.isSome() and peer.enr.get().isClusterMismatched(cluster.get()):
debug "peer has mismatching cluster", peer = $peer
trace "peer has mismatching cluster", peer = $peer
return false
# Filter if mix is enabled
if not peer.enr.get().supportsCapability(Capabilities.Mix):
debug "peer doesn't support mix", peer = $peer
trace "peer doesn't support mix", peer = $peer
return false
return true