Skip to content

Commit e82bc4e

Browse files
committed
fix: removed unwanted log which was displaying large data
Signed-off-by: RinkalBhojani <[email protected]>
1 parent 3696153 commit e82bc4e

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

apps/issuance/src/issuance.processor.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@ export class BulkIssuanceProcessor {
1111

1212
@OnQueueActive()
1313
onActive(job: Job): void {
14-
this.logger.log(
15-
`Emitting job status${job.id} of type ${job.name} with data ${JSON.stringify(job.data)}...`
16-
);
14+
this.logger.log(`Emitting job status${job.id} of type ${job.name} ...`);
1715
}
1816

1917
@Process()
20-
async issueCredential(job: Job<IQueuePayload>):Promise<void> {
21-
this.logger.log(
22-
`Processing job ${job.id} of type ${job.name} with data ${JSON.stringify(job.data)}...`
23-
);
18+
async issueCredential(job: Job<IQueuePayload>): Promise<void> {
19+
this.logger.log(`Processing job ${job.id} of type ${job.name} ...`);
2420

2521
this.issuanceService.processIssuanceData(job.data);
2622
}

0 commit comments

Comments
 (0)