diff --git a/lib/src/main/kotlin/org/veupathdb/lib/compute/platform/JobManager.kt b/lib/src/main/kotlin/org/veupathdb/lib/compute/platform/JobManager.kt index b7e025b..c38d1ce 100644 --- a/lib/src/main/kotlin/org/veupathdb/lib/compute/platform/JobManager.kt +++ b/lib/src/main/kotlin/org/veupathdb/lib/compute/platform/JobManager.kt @@ -44,7 +44,7 @@ internal object JobManager { // If job is not in S3, but is in the database, something has gone wrong. Remove the job from the internal DB. // Otherwise, the job will be stuck indefinitely. if (lock.withLock { s3Job == null }) { - Log.debug("Job {} is missing in S3 but is present in queue db. Deleting job from queue db to start fresh.") + Log.debug("Job {} is missing in S3 but is present in queue db. Deleting job from queue db to start fresh.", jobID) QueueDB.deleteJob(jobID) return null