mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-21 14:04:06 +01:00
routing/router: avoid naked spew of channel policies
This commit is contained in:
parent
a8b2c093aa
commit
a5b22788bf
1 changed files with 2 additions and 1 deletions
|
@ -1211,7 +1211,8 @@ func (r *ChannelRouter) processUpdate(msg interface{}) error {
|
|||
}
|
||||
|
||||
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:
|
||||
return errors.Errorf("wrong routing update message type")
|
||||
|
|
Loading…
Add table
Reference in a new issue