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.
This commit is contained in:
jp1ac4 2023-12-19 01:06:13 +00:00
parent d8a5e1d780
commit e4d8330f34
No known key found for this signature in database
GPG Key ID: A7ACD32423568D7B

View File

@ -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()
);