Skip to content

Commit 0995ea3

Browse files
committed
f make logging consistent
1 parent 02dc058 commit 0995ea3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/chain/chainmonitor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,11 +590,11 @@ where C::Target: chain::Filter,
590590
pending_monitor_updates.push(update_id);
591591
},
592592
ChannelMonitorUpdateStatus::PermanentFailure => {
593-
log_error!(self.logger, "Persist of new ChannelMonitor for channel {} failed", log_funding_info!(monitor));
593+
log_error!(self.logger, "Persistence of new ChannelMonitor for channel {} failed", log_funding_info!(monitor));
594594
return persist_res;
595595
},
596596
ChannelMonitorUpdateStatus::Complete => {
597-
log_info!(self.logger, "Finished persisting new ChannelMonitor for channel {}", log_funding_info!(monitor));
597+
log_info!(self.logger, "Persistence of new ChannelMonitor for channel {} completed", log_funding_info!(monitor));
598598
}
599599
}
600600
if let Some(ref chain_source) = self.chain_source {

0 commit comments

Comments
 (0)