1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-12-22 14:48:07 +00:00

Remove empty error messages that manifested as "%s"

This commit is contained in:
Liz Rice 2017-08-31 14:41:52 +01:00
parent 6a5a62b278
commit 0e9c11ebd5

View File

@ -156,7 +156,9 @@ func (c *Check) Run() {
i++
}
glog.V(2).Info("%s\n", errmsgs)
if errmsgs != "" {
glog.V(2).Info(errmsgs)
}
res := c.Tests.execute(out.String())
if res {