Skip to content

Commit b1abf32

Browse files
committed
improving message in log
1 parent bbe20c3 commit b1abf32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/peer_handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2087,7 +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);
2090+
log_debug!(self.logger, "Handling BroadcastChannelUpdate event in peer_handler for contents {:?}", msg.contents);
20912091
match self.message_handler.route_handler.handle_channel_update(&msg) {
20922092
Ok(_) | Err(LightningError { action: msgs::ErrorAction::IgnoreDuplicateGossip, .. }) =>
20932093
self.forward_broadcast_msg(peers, &wire::Message::ChannelUpdate(msg), None),

0 commit comments

Comments
 (0)