From 28429fa9fe52c069010d3426ef364661de4e863e Mon Sep 17 00:00:00 2001 From: Daniel Karzel Date: Wed, 20 Jan 2021 13:30:35 +1100 Subject: [PATCH] Revert log statement --- swap/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swap/src/main.rs b/swap/src/main.rs index 18beda09..0c70d67e 100644 --- a/swap/src/main.rs +++ b/swap/src/main.rs @@ -78,7 +78,7 @@ async fn main() -> Result<()> { let swap_id = Uuid::new_v4(); info!( - "Swap sending {} and receiving {} starting with ID {}", + "Swap sending {} and receiving {} started with ID {}", send_monero, receive_bitcoin, swap_id ); @@ -123,7 +123,7 @@ async fn main() -> Result<()> { let swap_id = Uuid::new_v4(); info!( - "Swap sending {} and receiving {} starting with ID {}", + "Swap sending {} and receiving {} started with ID {}", send_bitcoin, receive_monero, swap_id );