From 4698d18294dc4ffec660c20750ad39a4f2a1f46c Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Wed, 6 Feb 2019 11:50:38 +0100 Subject: [PATCH] fundingmanager: don't spew shortChanID gives uneccessary output as 2019-02-06 11:26:45.338 [INF] FNDG: Announcing ChannelPoint(cf659a58d68f206531136bf19dea82863a488937f9f4c3d489c450ad81c1724e:0), short_chan_id=(*lnwire.ShortChannelID)(0xc000670a60)(1977:1:0) --- fundingmanager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fundingmanager.go b/fundingmanager.go index 1eb45b65..a86b1747 100644 --- a/fundingmanager.go +++ b/fundingmanager.go @@ -2287,7 +2287,7 @@ func (f *fundingManager) annAfterSixConfs(completeChan *channeldb.OpenChannel, chanID := lnwire.NewChanIDFromOutPoint(&fundingPoint) fndgLog.Infof("Announcing ChannelPoint(%v), short_chan_id=%v", - &fundingPoint, spew.Sdump(shortChanID)) + &fundingPoint, shortChanID) // We'll obtain the min HTLC value we can forward in our // direction, as we'll use this value within our ChannelUpdate. @@ -2319,7 +2319,7 @@ func (f *fundingManager) annAfterSixConfs(completeChan *channeldb.OpenChannel, } fndgLog.Debugf("Channel with ChannelPoint(%v), short_chan_id=%v "+ - "announced", &fundingPoint, spew.Sdump(shortChanID)) + "announced", &fundingPoint, shortChanID) } // We delete the channel opening state from our internal database