Merge pull request #9200 from starius/fix-logging

peer: fix logging (missing argument) [skip ci]
This commit is contained in:
Oliver Gugger 2024-10-21 10:23:48 +02:00 committed by GitHub
commit f34bf51d16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1812,7 +1812,7 @@ func newChanMsgStream(p *Brontide, cid lnwire.ChannelID) *msgStream {
// If the link is still not active and the calling function
// errored out, just return.
if chanLink == nil {
p.log.Warnf("Link=%v is not active")
p.log.Warnf("Link=%v is not active", cid)
return
}
}