Skip to content

Commit 1d01e47

Browse files
authored
Merge pull request #2548 from JosephGoulden/chain-monitor-logging
Downgrade log message "Channel Monitor sync is still in progress" from info to debug
2 parents e9d9711 + 25c0f48 commit 1d01e47

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
@@ -772,7 +772,7 @@ where C::Target: chain::Filter,
772772
monitor_state.last_chain_persist_height.load(Ordering::Acquire) + LATENCY_GRACE_PERIOD_BLOCKS as usize
773773
> self.highest_chain_height.load(Ordering::Acquire)
774774
{
775-
log_info!(self.logger, "A Channel Monitor sync is still in progress, refusing to provide monitor events!");
775+
log_debug!(self.logger, "A Channel Monitor sync is still in progress, refusing to provide monitor events!");
776776
} else {
777777
if monitor_state.channel_perm_failed.load(Ordering::Acquire) {
778778
// If a `UpdateOrigin::ChainSync` persistence failed with `PermanantFailure`,

0 commit comments

Comments
 (0)