diff --git a/swap/src/bitcoin.rs b/swap/src/bitcoin.rs index 972140eb..0f76064f 100644 --- a/swap/src/bitcoin.rs +++ b/swap/src/bitcoin.rs @@ -106,7 +106,7 @@ impl SignTxLock for Wallet { impl BroadcastSignedTransaction for Wallet { async fn broadcast_signed_transaction(&self, transaction: Transaction) -> Result { let txid = self.inner.send_raw_transaction(transaction).await?; - tracing::debug!("Bitcoin tx broadcasted! TXID = {}", txid); + tracing::info!("Bitcoin tx broadcasted! TXID = {}", txid); Ok(txid) } } diff --git a/swap/src/monero.rs b/swap/src/monero.rs index 7c90c7b8..51111003 100644 --- a/swap/src/monero.rs +++ b/swap/src/monero.rs @@ -46,7 +46,7 @@ impl Transfer for Wallet { .await?; let tx_hash = TxHash(res.tx_hash); - tracing::debug!("Monero tx broadcasted!, tx hash: {:?}", tx_hash); + tracing::info!("Monero tx broadcasted!, tx hash: {:?}", tx_hash); let tx_key = PrivateKey::from_str(&res.tx_key)?; let fee = Amount::from_piconero(res.fee);