Skip to content

Commit

Permalink
Fix networking invalid field log (#2604)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph authored Jan 11, 2024
1 parent 31e5b3e commit 74e6afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/peer/peer.go
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ func (p *peer) handlePeerList(msg *p2p.PeerList) {
if ipLen := len(claimedIPPort.IpAddr); ipLen != net.IPv6len {
p.Log.Debug("message with invalid field",
zap.Stringer("nodeID", p.id),
zap.Stringer("messageOp", message.HandshakeOp),
zap.Stringer("messageOp", message.PeerListOp),
zap.String("field", "IP"),
zap.Int("ipLen", ipLen),
)
Expand Down

0 comments on commit 74e6afc

Please sign in to comment.