Skip to content

Commit

Permalink
refine info print
Browse files Browse the repository at this point in the history
  • Loading branch information
smtmfft committed Oct 15, 2024
1 parent b1d0a7d commit f3e406a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions host/src/proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ impl ProofActor {
}
result = Self::handle_aggregate(request_clone, &opts) => {
match result {
Ok(()) => {
info!("Host handling message");
Ok(status) => {
info!("Host handling message: {status:?}");
}
Err(error) => {
error!("Worker failed due to: {error:?}");
Expand Down Expand Up @@ -244,7 +244,7 @@ impl ProofActor {
self.run_task(proof_request).await;
} else {
info!(
"Task concurrency limit reached, current running {running_task_count:?}, pending: {:?}",
"Task concurrency status: running:{running_task_count:?}, add {proof_request:?} to pending list[{:?}]",
self.pending_tasks.lock().await.len()
);
let mut pending_tasks = self.pending_tasks.lock().await;
Expand Down

0 comments on commit f3e406a

Please sign in to comment.