Skip to content

Commit 54d2bbd

Browse files
committed
f further log consistency tweak
1 parent 0995ea3 commit 54d2bbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lightning/src/chain/chainmonitor.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,14 +641,14 @@ where C::Target: chain::Filter,
641641
match persist_res {
642642
ChannelMonitorUpdateStatus::InProgress => {
643643
pending_monitor_updates.push(update_id);
644-
log_debug!(self.logger, "ChannelMonitor update for channel {} in progress", log_funding_info!(monitor));
644+
log_debug!(self.logger, "Persistence of ChannelMonitorUpdate for channel {} in progress", log_funding_info!(monitor));
645645
},
646646
ChannelMonitorUpdateStatus::PermanentFailure => {
647647
monitor_state.channel_perm_failed.store(true, Ordering::Release);
648-
log_error!(self.logger, "Permanently failed to persist ChannelMonitor update for channel {}", log_funding_info!(monitor));
648+
log_error!(self.logger, "Persistence of ChannelMonitorUpdate for channel {} failed", log_funding_info!(monitor));
649649
},
650650
ChannelMonitorUpdateStatus::Complete => {
651-
log_debug!(self.logger, "Finished persisting ChannelMonitor update for channel {}", log_funding_info!(monitor));
651+
log_debug!(self.logger, "Persistence of ChannelMonitorUpdate for channel {} completed", log_funding_info!(monitor));
652652
},
653653
}
654654
if update_res.is_err() {

0 commit comments

Comments
 (0)