Skip to content

Commit 8fc2fe6

Browse files
Merge pull request #17111 from danwinship/ovs-logging
Automatic merge from submit-queue (batch tested with PRs 17109, 17111). Log OVS errors at a better level Since dind runs at --loglevel=4 now, we're missing out on OVS errors when things fail
2 parents eec9d69 + 9bfc9ac commit 8fc2fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/util/ovs/ovs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (ovsif *ovsExec) exec(cmd string, args ...string) (string, error) {
140140

141141
output, err := ovsif.execer.Command(cmd, args...).CombinedOutput()
142142
if err != nil {
143-
glog.V(5).Infof("Error executing %s: %s", cmd, string(output))
143+
glog.V(2).Infof("Error executing %s: %s", cmd, string(output))
144144
return "", err
145145
}
146146

0 commit comments

Comments
 (0)