change the Pora result from debug to info (#192)
Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run

Co-authored-by: jason1 <jason1@cambricon.com>
This commit is contained in:
Jason 2024-09-13 07:41:23 +08:00 committed by GitHub
parent 7f14451141
commit 59d24b073d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -210,7 +210,7 @@ impl PoraService {
let timer = time::Instant::now(); let timer = time::Instant::now();
if let Some(answer) = miner.batch_iteration(nonce, self.iter_batch).await { if let Some(answer) = miner.batch_iteration(nonce, self.iter_batch).await {
debug!("Hit Pora answer {:?}", answer); info!("Hit Pora answer {:?}", answer);
if self.mine_answer_sender.send(answer).is_err() { if self.mine_answer_sender.send(answer).is_err() {
warn!("Mine submitter channel closed"); warn!("Mine submitter channel closed");
} }