From e4d8330f34cf82e43bd7d1dc54e56ebf4cfe0baf Mon Sep 17 00:00:00 2001 From: jp1ac4 <121959000+jp1ac4@users.noreply.github.com> Date: Tue, 19 Dec 2023 01:06:13 +0000 Subject: [PATCH] spend: use debug log level in coin selection This function is now called many times from the GUI via `create_spend` and we expect this log message to be generated multiple times. --- src/spend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spend.rs b/src/spend.rs index c139271f..5b15a372 100644 --- a/src/spend.rs +++ b/src/spend.rs @@ -344,7 +344,7 @@ fn select_coins_for_spend( #[cfg(debug)] let bnb_rounds = bnb_rounds / 1_000; if let Err(e) = selector.run_bnb(lowest_fee_change_cond, bnb_rounds) { - log::warn!( + log::debug!( "Coin selection error: '{}'. Selecting coins by descending value per weight unit...", e.to_string() );