Skip to content

Commit

Permalink
feat: more details in queue job added log
Browse files Browse the repository at this point in the history
  • Loading branch information
Galeaf11 committed Mar 20, 2024
1 parent f02eb91 commit 16e1918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/queue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ export class Queue extends EventEmitter<QueueEvents> {
}

this.jobs.push(job);
logger.trace('Job added:', job);
logger.trace('Job added:', JSON.stringify(job, null, 2));
void this.storageUpdate(job.id, job);
void this.start();
return job.id;
Expand Down

0 comments on commit 16e1918

Please sign in to comment.