There was an error while loading. Please reload this page.
1 parent d468fa7 commit a011c7cCopy full SHA for a011c7c
1 file changed
cli/cage/audit/printer.go
@@ -58,9 +58,9 @@ func (p *printer) Print(scanResults []*ScanResult) {
58
}
59
60
result := agg.Result()
61
- p.logVuln("CRITICAL", result.CriticalCves())
62
- p.logVuln("HIGH", result.HighCves())
63
- p.logVuln("MEDIUM", result.MediumCves())
+ p.logVuln(ecrtypes.FindingSeverityCritical, result.CriticalCves())
+ p.logVuln(ecrtypes.FindingSeverityHigh, result.HighCves())
+ p.logVuln(ecrtypes.FindingSeverityMedium, result.MediumCves())
64
total := agg.TotalCVECount()
65
color := p.color
66
if total == 0 {
0 commit comments