Skip to content

Commit 875cdb7

Browse files
committed
update debug to info
1 parent c79cb43 commit 875cdb7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/translator/utils.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use bitcoin::{
1717
use lazy_static::lazy_static;
1818
use roles_logic_sv2::utils::Mutex;
1919
use sv1_api::{client_to_server, server_to_client::Notify};
20-
use tracing::{debug, error};
20+
use tracing::{debug, error, info};
2121

2222
use super::downstream::Downstream;
2323
lazy_static! {
@@ -159,9 +159,9 @@ pub fn validate_share(
159159
);
160160

161161
hash.reverse(); //convert to little-endian
162-
debug!("Hash: {:?}", hash.to_vec().as_hex());
162+
info!("Hash: {:?}", hash.to_vec().as_hex());
163163
let target = Downstream::difficulty_to_target(difficulty);
164-
debug!("Target: {:?}", target.to_vec().as_hex());
164+
info!("Target: {:?}", target.to_vec().as_hex());
165165
hash <= target
166166
}
167167

0 commit comments

Comments
 (0)