Skip to content

Commit

Permalink
Merge pull request #263 from multiversx/change-log-level
Browse files Browse the repository at this point in the history
change log from Debug to Trace for ProcessReceivedMessage
  • Loading branch information
dragos-rebegea authored Apr 13, 2023
2 parents 70413bc + a2e540c commit 32b17fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/broadcaster.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (b *broadcaster) ProcessReceivedMessage(message p2p.MessageP2P, fromConnect
return fmt.Errorf("%w for peer: %s", ErrPeerNotWhitelisted, hexPkBytes)
}

b.log.Debug("got message", "topic", message.Topic(),
b.log.Trace("got message", "topic", message.Topic(),
"msg.Payload", msg.Payload, "msg.Nonce", msg.Nonce, "msg.PublicKey", addr.AddressAsBech32String())

err = b.processNonce(msg)
Expand Down

0 comments on commit 32b17fc

Please sign in to comment.