Skip to content

Commit f6ac4f6

Browse files
committed
f! log trace
1 parent 5785e82 commit f6ac4f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/events/bump_transaction.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ where
530530
let mut eligible_utxos = utxos.iter().filter_map(|utxo| {
531531
if let Some(utxo_claim_id) = locked_utxos.get(&utxo.outpoint) {
532532
if *utxo_claim_id != claim_id && !force_conflicting_utxo_spend {
533-
log_debug!(self.logger, "Skipping UTXO {} to prevent conflicting spend", utxo.outpoint);
533+
log_trace!(self.logger, "Skipping UTXO {} to prevent conflicting spend", utxo.outpoint);
534534
return None;
535535
}
536536
}
@@ -545,7 +545,7 @@ where
545545
if should_spend {
546546
Some((utxo, fee_to_spend_utxo))
547547
} else {
548-
log_debug!(self.logger, "Skipping UTXO {} due to dust proximity after spend", utxo.outpoint);
548+
log_trace!(self.logger, "Skipping UTXO {} due to dust proximity after spend", utxo.outpoint);
549549
None
550550
}
551551
}).collect::<Vec<_>>();

0 commit comments

Comments
 (0)