blocksync: call log.info in HandleStream

This commit is contained in:
Łukasz Magiera 2019-07-26 01:27:19 +02:00
parent 45ddd8e590
commit 5fd07fe46b

View File

@ -79,7 +79,7 @@ func NewBlockSyncService(cs *ChainStore) *BlockSyncService {
func (bss *BlockSyncService) HandleStream(s inet.Stream) {
defer s.Close()
log.Error("handling block sync request")
log.Info("handling block sync request")
var req BlockSyncRequest
if err := cborrpc.ReadCborRPC(bufio.NewReader(s), &req); err != nil {