Merge pull request #1695 from TheBlueMatt/2022-08-log-chan_update

Ensure we log private channel_updates at a non-GOSSIP log level
This commit is contained in:
Matt Corallo 2022-09-06 19:15:05 +00:00 committed by GitHub
commit ee2f1a929e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5150,6 +5150,7 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
if were_node_one == msg_from_node_one {
return Ok(NotifyOption::SkipPersist);
} else {
log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
try_chan_entry!(self, chan.get_mut().channel_update(&msg), channel_state, chan);
}
},