From 165a0e7ff9cea89d0c53436a84c11bcb0b7b7b1b Mon Sep 17 00:00:00 2001 From: Ross Savage <551697+dangeross@users.noreply.github.com> Date: Thu, 27 Mar 2025 13:54:25 +0100 Subject: [PATCH] Fix println (#820) --- lib/core/src/recover/handlers/handle_send_swap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/recover/handlers/handle_send_swap.rs b/lib/core/src/recover/handlers/handle_send_swap.rs index 0fcd0df..7842e1e 100644 --- a/lib/core/src/recover/handlers/handle_send_swap.rs +++ b/lib/core/src/recover/handlers/handle_send_swap.rs @@ -191,7 +191,7 @@ impl SendSwapHandler { ) -> Result> { // Try cooperative first if let Ok(preimage) = swapper.get_submarine_preimage(swap_id).await { - println!("Found Send Swap {swap_id} preimage cooperatively: {preimage}"); + log::debug!("Found Send Swap {swap_id} preimage cooperatively: {preimage}"); return Ok(Some(preimage)); } warn!("Could not recover Send swap {swap_id} preimage cooperatively");