server: change logging in OnGetCFilter to be less verbose

This commit is contained in:
Alex 2017-06-13 09:27:18 -06:00 committed by Olaoluwa Osuntokun
parent ac4bd31ba0
commit 6589cffb19

View file

@ -750,9 +750,9 @@ func (sp *serverPeer) OnGetCFilter(_ *peer.Peer, msg *wire.MsgGetCFilter) {
msg.Extended)
if len(filterBytes) > 0 {
peerLog.Infof("Obtained CF for %v", msg.BlockHash)
peerLog.Tracef("Obtained CF for %v", msg.BlockHash)
} else {
peerLog.Infof("Could not obtain CF for %v: %v", msg.BlockHash,
peerLog.Warnf("Could not obtain CF for %v: %v", msg.BlockHash,
err)
}