Improve logging for Swap Cli.

pull/493/head
Philipp Hoenisch 3 years ago
parent 4f45a26a83
commit 493545d07f
No known key found for this signature in database
GPG Key ID: E5F8E74C672BC666

@ -343,7 +343,12 @@ where
{
debug!("Requesting quote");
let bid_quote = bid_quote.await?;
info!("Received quote: 1 XMR ~ {}", bid_quote.price);
info!(
minimum_amount = %bid_quote.min_quantity,
maximum_amount = %bid_quote.max_quantity,
"Received quote: 1 XMR ~ {}",
bid_quote.price
);
let mut current_maximum_giveable = max_giveable().await?;

Loading…
Cancel
Save