mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 01:36:24 +01:00
discovery: demote err log to debug from processZombieUpdate
This log can be "spammy" while nodes throughout the network have yet to upgrade to v0.13.0-beta, which includes several enhancements to prevent the broadcast of zombie edges/updates.
This commit is contained in:
parent
785d3c9b4f
commit
186237ca73
1 changed files with 1 additions and 1 deletions
|
@ -1889,7 +1889,7 @@ func (d *AuthenticatedGossiper) processNetworkAnnouncement(
|
|||
case channeldb.ErrZombieEdge:
|
||||
err = d.processZombieUpdate(chanInfo, msg)
|
||||
if err != nil {
|
||||
log.Warn(err)
|
||||
log.Debug(err)
|
||||
nMsg.err <- err
|
||||
return nil, false
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue