Make Receive() logging consistent

This commit is contained in:
Jae Kwon
2015-12-31 14:27:05 -08:00
parent 708ee232bc
commit dcc1caaf68
3 changed files with 11 additions and 11 deletions

View File

@ -130,7 +130,7 @@ func (bcR *BlockchainReactor) Receive(chID byte, src *p2p.Peer, msgBytes []byte)
return
}
log.Notice("Received message", "src", src, "chID", chID, "msg", msg)
log.Info("Receive", "src", src, "chID", chID, "msg", msg)
switch msg := msg.(type) {
case *bcBlockRequestMessage: