diff --git a/src/job.rs b/src/job.rs index b0303a6e4..869ce5aea 100644 --- a/src/job.rs +++ b/src/job.rs @@ -873,10 +873,8 @@ fn job_perform(context: &Context, thread: Thread, probe_network: bool) { // to give other jobs a chance being tried at least once. break; } else { - info!( - context, - "{} removes job {} as it cannot be retried", thread, job - ); + // Job finished successfully or cannot be retried. + info!(context, "{} removes job {}", thread, job); job.delete(context); } }