Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
heemankv committed Dec 15, 2024
1 parent 5a2d472 commit 7cf2932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/orchestrator/src/jobs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ pub async fn verify_job(id: Uuid, config: Arc<Config>) -> Result<(), JobError> {
.map(|start| Utc::now().timestamp_millis() - start)
{
Some(time_taken) => ORCHESTRATOR_METRICS.proving_time.record(time_taken as f64, &[]),
None => eprintln!("Failed to calculate proving time: Invalid or missing processing time"),
None => tracing::warn!("Failed to calculate proving time: Invalid or missing processing time"),
}
}
let mut metadata = job.metadata.clone();
Expand Down

0 comments on commit 7cf2932

Please sign in to comment.