Skip to content

Commit 1d38846

Browse files
committed
fix(daemon): show stream in log
1 parent 00b3d91 commit 1d38846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/daemon/src/consumer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export async function consume(consumerName: string) {
6262

6363
for (const { id, message } of messages) {
6464
const job = message as unknown as Job;
65-
const jobLog = log.child({ id, job });
65+
const jobLog = log.child({ stream, id, job });
6666
jobLog.info("Job processing started");
6767
for (let attempt = 1; ; ++attempt) {
6868
try {

0 commit comments

Comments
 (0)