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:
Wilmer Paulino 2021-05-26 13:32:47 -07:00
parent 785d3c9b4f
commit 186237ca73
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F

View File

@ -1889,7 +1889,7 @@ func (d *AuthenticatedGossiper) processNetworkAnnouncement(
case channeldb.ErrZombieEdge: case channeldb.ErrZombieEdge:
err = d.processZombieUpdate(chanInfo, msg) err = d.processZombieUpdate(chanInfo, msg)
if err != nil { if err != nil {
log.Warn(err) log.Debug(err)
nMsg.err <- err nMsg.err <- err
return nil, false return nil, false
} }