File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,12 @@ export class BulkIssuanceProcessor {
11
11
12
12
@OnQueueActive ( )
13
13
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 } ...` ) ;
17
15
}
18
16
19
17
@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 } ...` ) ;
24
20
25
21
this . issuanceService . processIssuanceData ( job . data ) ;
26
22
}
You can’t perform that action at this time.
0 commit comments