diff --git a/boltzr/src/swap/filters.rs b/boltzr/src/swap/filters.rs index 09d7c0ee..9fdf3c20 100644 --- a/boltzr/src/swap/filters.rs +++ b/boltzr/src/swap/filters.rs @@ -11,7 +11,7 @@ use anyhow::Result; use diesel::{BoolExpressionMethods, ExpressionMethods}; use std::collections::{HashMap, HashSet}; use std::sync::Arc; -use tracing::warn; +use tracing::{trace, warn}; pub type Filters = HashMap, HashSet>)>; @@ -164,7 +164,7 @@ where } } None => { - warn!( + trace!( "Could not recreate filter for {} Swap {}: no currency for symbol {}", swap.kind(), swap.id(), diff --git a/lib/swap/NodeSwitch.ts b/lib/swap/NodeSwitch.ts index 669f92f6..89b7d0cf 100644 --- a/lib/swap/NodeSwitch.ts +++ b/lib/swap/NodeSwitch.ts @@ -26,6 +26,7 @@ class NodeSwitch { ) { this.clnAmountThreshold = cfg?.clnAmountThreshold || NodeSwitch.defaultClnAmountThreshold; + this.logger.info(`CLN invoice threshold: ${this.clnAmountThreshold} sat`); const swapNode = cfg?.swapNode !== undefined