Skip to content

Commit cb235e9

Browse files
committed
Make channel monitor sync in progress a trace log
This log is super spammy for us, think this makes more sense as a trace log.
1 parent 2c51080 commit cb235e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/chain/chainmonitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ where C::Target: chain::Filter,
818818
monitor_state.last_chain_persist_height.load(Ordering::Acquire) + LATENCY_GRACE_PERIOD_BLOCKS as usize
819819
> self.highest_chain_height.load(Ordering::Acquire)
820820
{
821-
log_debug!(self.logger, "A Channel Monitor sync is still in progress, refusing to provide monitor events!");
821+
log_trace!(self.logger, "A Channel Monitor sync is still in progress, refusing to provide monitor events!");
822822
} else {
823823
if is_pending_monitor_update {
824824
log_error!(self.logger, "A ChannelMonitor sync took longer than {} blocks to complete.", LATENCY_GRACE_PERIOD_BLOCKS);

0 commit comments

Comments
 (0)