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) 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