Move log messages to the appropriate abstraction layer

Log messages are ideally as close to the functionality they are talking about, otherwise we might end up repeating ourselves on several callsites or the log messages gets outdated if the behaviour changes.
This commit is contained in:
Thomas Eizinger 2021-02-26 17:01:36 +11:00
parent b8df4a3145
commit 7387884e6d
No known key found for this signature in database
GPG key ID: 651AC83A6C6C8B96
8 changed files with 28 additions and 20 deletions

View file

@ -389,12 +389,14 @@ pub async fn request_quote_and_setup(
.send_quote_request(QuoteRequest { btc_amount })
.await?;
let quote_response = event_loop_handle.recv_quote_response().await?;
let xmr_amount = event_loop_handle.recv_quote_response().await?.xmr_amount;
tracing::info!("Quote for {} is {}", btc_amount, xmr_amount);
let state0 = State0::new(
&mut OsRng,
btc_amount,
quote_response.xmr_amount,
xmr_amount,
execution_params.bitcoin_cancel_timelock,
execution_params.bitcoin_punish_timelock,
bitcoin_refund_address,