Skip to content

Commit 863e19f

Browse files
committed
adding all information of channelUpdate message to logs
1 parent 4fdf20f commit 863e19f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lightning/src/ln/peer_handler.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2087,8 +2087,7 @@ impl<Descriptor: SocketDescriptor, CM: Deref, RM: Deref, OM: Deref, L: Deref, CM
20872087
}
20882088
},
20892089
MessageSendEvent::BroadcastChannelUpdate { msg } => {
2090-
log_debug!(self.logger, "Handling BroadcastChannelUpdate event in peer_handler for short channel id {}", msg.contents.short_channel_id);
2091-
log_debug!(self.logger, "Handling BroadcastChannelUpdate event in peer_handler with content {:?}", msg.contents);
2090+
log_debug!(self.logger, "Handling BroadcastChannelUpdate event in peer_handler with all the content {:?}", msg.contents);
20922091
match self.message_handler.route_handler.handle_channel_update(&msg) {
20932092
Ok(_) | Err(LightningError { action: msgs::ErrorAction::IgnoreDuplicateGossip, .. }) =>
20942093
self.forward_broadcast_msg(peers, &wire::Message::ChannelUpdate(msg), None),

0 commit comments

Comments
 (0)