Merge pull request #5334 from wpaulino/process-zombie-update-log-debug

discovery: demote err log to debug from processZombieUpdate
This commit is contained in:
Olaoluwa Osuntokun 2021-05-26 15:27:24 -07:00 committed by GitHub
commit 7f7e83b6aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}