From 4b2cb68fe6fa5805cef8021e985965d4e4689fa1 Mon Sep 17 00:00:00 2001 From: Jim Posen Date: Mon, 9 Apr 2018 16:45:07 -0700 Subject: [PATCH] discovery: Fix formatting issue in log line. --- discovery/gossiper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discovery/gossiper.go b/discovery/gossiper.go index 02791bccd..9801062e9 100644 --- a/discovery/gossiper.go +++ b/discovery/gossiper.go @@ -1387,7 +1387,7 @@ func (d *AuthenticatedGossiper) processNetworkAnnouncement(nMsg *networkMsg) []n // We'll ignore any channel announcements that target any chain // other than the set of chains we know of. if !bytes.Equal(msg.ChainHash[:], d.cfg.ChainHash[:]) { - log.Error("Ignoring ChannelAnnouncement from "+ + log.Errorf("Ignoring ChannelAnnouncement from "+ "chain=%v, gossiper on chain=%v", msg.ChainHash, d.cfg.ChainHash) d.rejectMtx.Lock()