don't log job name unless it has one

(cherry picked from commit a5316c06ed770b60f7b4c7ff5aa8c71cc0558db7)
This commit is contained in:
Hazel K 2024-10-08 11:01:24 -04:00 committed by kakkokari-gtyih
parent 33eb3fcfc5
commit d0211c3cea
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ export class QueueProcessorService implements OnApplicationShutdown {
if (!job) return '?';
return {
name: job.name,
name: job.name || undefined,
info: getJobInfo(job),
failedReason: job.failedReason || undefined,
data: job.data,