From ba28ec3be0c7089abfd3f828d4d3db3802350033 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Thu, 18 Oct 2018 16:16:30 -0700 Subject: [PATCH] chainntnfs/neutrinonotify/neutrino: fix debug logs --- chainntnfs/neutrinonotify/neutrino.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chainntnfs/neutrinonotify/neutrino.go b/chainntnfs/neutrinonotify/neutrino.go index 3c888af6..b4455442 100644 --- a/chainntnfs/neutrinonotify/neutrino.go +++ b/chainntnfs/neutrinonotify/neutrino.go @@ -465,13 +465,13 @@ out: n.heightMtx.Lock() if update.height != uint32(n.bestHeight) { - chainntnfs.Log.Infof("Missed disconnected" + + chainntnfs.Log.Infof("Missed disconnected " + "blocks, attempting to catch up") } hash, err := n.p2pNode.GetBlockHash(int64(n.bestHeight)) if err != nil { - chainntnfs.Log.Errorf("Unable to fetch block hash"+ + chainntnfs.Log.Errorf("Unable to fetch block hash "+ "for height %d: %v", n.bestHeight, err) n.heightMtx.Unlock() continue