don't log job name unless it has one
This commit is contained in:
parent
5171ba7113
commit
a5316c06ed
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ export class QueueProcessorService implements OnApplicationShutdown {
|
||||||
if (!job) return '?';
|
if (!job) return '?';
|
||||||
|
|
||||||
return {
|
return {
|
||||||
name: job.name,
|
name: job.name || undefined,
|
||||||
info: getJobInfo(job),
|
info: getJobInfo(job),
|
||||||
failedReason: job.failedReason || undefined,
|
failedReason: job.failedReason || undefined,
|
||||||
data: job.data,
|
data: job.data,
|
||||||
|
|
Loading…
Reference in a new issue