Skip to content
Snippets Groups Projects
Commit 0e9c11eb authored by Liz Rice's avatar Liz Rice
Browse files

Remove empty error messages that manifested as "%s"

parent 6a5a62b2
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment