mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-30 18:43:42 +02:00
routing/router: avoid naked spew of channel policies
This commit is contained in:
@ -1211,7 +1211,8 @@ func (r *ChannelRouter) processUpdate(msg interface{}) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
invalidateCache = true
|
invalidateCache = true
|
||||||
log.Tracef("New channel update applied: %v", spew.Sdump(msg))
|
log.Tracef("New channel update applied: %v",
|
||||||
|
newLogClosure(func() string { return spew.Sdump(msg) }))
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return errors.Errorf("wrong routing update message type")
|
return errors.Errorf("wrong routing update message type")
|
||||||
|
Reference in New Issue
Block a user