We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e3170a commit eee2e3dCopy full SHA for eee2e3d
Sources/JobsPostgres/PostgresJobsQueue.swift
@@ -275,7 +275,7 @@ public final class PostgresJobQueue: JobQueueDriver {
275
logger: self.logger
276
)
277
guard let row = try await stream2.first(where: { _ in true }) else {
278
- logger.error(
+ logger.info(
279
"Failed to find job with id",
280
metadata: [
281
"JobID": "\(jobID)"
@@ -300,15 +300,15 @@ public final class PostgresJobQueue: JobQueueDriver {
300
}
301
302
} catch let error as PSQLError {
303
304
"Failed to get job from queue",
305
306
"error": "\(String(reflecting: error))"
307
]
308
309
throw error
310
} catch let error as JobQueueError {
311
312
"Job failed",
313
314
0 commit comments