From 58aae0757e1bb1944821b6090d8f55599d38293f Mon Sep 17 00:00:00 2001 From: ziggie Date: Mon, 17 Apr 2023 11:53:21 +0200 Subject: [PATCH 1/2] netann: fix logging output --- netann/chan_status_manager.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/netann/chan_status_manager.go b/netann/chan_status_manager.go index 8340c202c..518fd3970 100644 --- a/netann/chan_status_manager.go +++ b/netann/chan_status_manager.go @@ -398,7 +398,9 @@ func (m *ChanStatusManager) processEnableRequest(outpoint wire.OutPoint, // Channel is already enabled, nothing to do. case ChanStatusEnabled: - log.Debugf("Channel(%v) already enabled, skipped announcement") + log.Debugf("Channel(%v) already enabled, skipped "+ + "announcement", outpoint) + return nil // The channel is enabled, though we are now canceling the scheduled From 461e5f4ac217ccce0a4ed48a1e3661f393c687c8 Mon Sep 17 00:00:00 2001 From: ziggie Date: Mon, 17 Apr 2023 11:58:08 +0200 Subject: [PATCH 2/2] docs: update release notes --- docs/release-notes/release-notes-0.16.1.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/release-notes/release-notes-0.16.1.md b/docs/release-notes/release-notes-0.16.1.md index 07a0be8e4..1ce156bb3 100644 --- a/docs/release-notes/release-notes-0.16.1.md +++ b/docs/release-notes/release-notes-0.16.1.md @@ -76,6 +76,9 @@ available](https://github.com/lightningnetwork/lnd/pull/7529). * [Put back P2TR as default change type in batch_open_channel](https://github.com/lightningnetwork/lnd/pull/7603). + +* [Fix log output](https://github.com/lightningnetwork/lnd/pull/7604). + # Contributors (Alphabetical Order)