mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2025-08-01 03:18:07 +00:00
Blue for info messages
This commit is contained in:
parent
ed4ded7b3f
commit
b7a92799b9
@ -48,7 +48,7 @@ var (
|
|||||||
check.PASS: color.New(color.FgGreen),
|
check.PASS: color.New(color.FgGreen),
|
||||||
check.FAIL: color.New(color.FgRed),
|
check.FAIL: color.New(color.FgRed),
|
||||||
check.WARN: color.New(color.FgYellow),
|
check.WARN: color.New(color.FgYellow),
|
||||||
check.INFO: color.New(color.FgWhite),
|
check.INFO: color.New(color.FgBlue),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -199,7 +199,7 @@ func prettyPrint(r *check.Controls, summary check.Summary) {
|
|||||||
// Print checks and results.
|
// Print checks and results.
|
||||||
colorPrint(check.INFO, fmt.Sprintf("%s %s\n", r.ID, r.Text))
|
colorPrint(check.INFO, fmt.Sprintf("%s %s\n", r.ID, r.Text))
|
||||||
for _, g := range r.Groups {
|
for _, g := range r.Groups {
|
||||||
fmt.Printf("[INFO] %s %s\n", g.ID, g.Text)
|
colorPrint(check.INFO, fmt.Sprintf("%s %s\n", g.ID, g.Text))
|
||||||
for _, c := range g.Checks {
|
for _, c := range g.Checks {
|
||||||
colorPrint(c.State, fmt.Sprintf("%s %s\n", c.ID, c.Text))
|
colorPrint(c.State, fmt.Sprintf("%s %s\n", c.ID, c.Text))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user