Fix println (#820)

This commit is contained in:
Ross Savage
2025-03-27 13:54:25 +01:00
committed by GitHub
parent 1d111d0c30
commit 165a0e7ff9

View File

@@ -191,7 +191,7 @@ impl SendSwapHandler {
) -> Result<Option<String>> {
// 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");