Skip to content

Commit

Permalink
Fix missing .as_secs()
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilLuta committed Dec 17, 2023
1 parent 5f1362f commit 812c518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/witness_vector_generator/src/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl JobProcessor for WitnessVectorGenerator {
}
}
tracing::warn!(
"Not able to get any free prover instance for sending witness vector for job: {job_id} after {} seconds", now.elapsed()
"Not able to get any free prover instance for sending witness vector for job: {job_id} after {} seconds", now.elapsed().as_secs()
);
Ok(())
}
Expand Down

0 comments on commit 812c518

Please sign in to comment.