chore(server): log removed job id (#12646)

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

- **Chores**
	- Improved log messages to include job IDs when jobs are removed from the queue, enhancing traceability for users monitoring job activity.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
fengmk2
2025-05-29 11:48:16 +00:00
parent 625e8392a6
commit 31a1841e25
@@ -48,7 +48,7 @@ export class JobQueue {
const removed = await queue.remove(jobId);
if (removed) {
this.logger.log(`Job ${jobName} removed from queue ${ns}`);
this.logger.log(`Job ${jobName}(id=${jobId}) removed from queue ${ns}`);
return job.data.payload;
}