Commit e41cac2 1 parent a3d59cd commit e41cac2 Copy full SHA for e41cac2
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export = class WorkloadWorker {
28
28
logger . info ( { workloadName, imageCount : uniqueImages . length } , 'pulling unique images' ) ;
29
29
const pulledImages = await pullImages ( uniqueImages ) ;
30
30
if ( pulledImages . length === 0 ) {
31
- logger . info ( { } , 'no images were pulled, halting scanner process.' ) ;
31
+ logger . info ( { workloadName } , 'no images were pulled, halting scanner process.' ) ;
32
32
return ;
33
33
}
34
34
@@ -54,7 +54,7 @@ export = class WorkloadWorker {
54
54
const scannedImages : IScanResult [ ] = await scanImages ( pulledImages ) ;
55
55
56
56
if ( scannedImages . length === 0 ) {
57
- logger . info ( { } , 'no images were scanned, halting scanner process.' ) ;
57
+ logger . info ( { workloadName } , 'no images were scanned, halting scanner process.' ) ;
58
58
return ;
59
59
}
60
60
You can’t perform that action at this time.
0 commit comments