Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed May 29, 2024
1 parent 9e58b7a commit a27cc35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a27cc35

Please sign in to comment.