From 4aac47c31d819da4a290ed3e6e892990b0996d19 Mon Sep 17 00:00:00 2001 From: Dawn Chen Date: Mon, 2 Feb 2015 11:05:55 -0800 Subject: [PATCH] make kube-proxy.log less verbose. --- pkg/util/iptables/iptables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/iptables/iptables.go b/pkg/util/iptables/iptables.go index cc49b8a9b1f..2dd0208b326 100644 --- a/pkg/util/iptables/iptables.go +++ b/pkg/util/iptables/iptables.go @@ -183,7 +183,7 @@ func (runner *runner) run(op operation, args []string) ([]byte, error) { iptablesCmd := runner.iptablesCommand() fullArgs := append([]string{string(op)}, args...) - glog.V(1).Infof("running iptables %s %v", string(op), args) + glog.V(4).Infof("running iptables %s %v", string(op), args) return runner.exec.Command(iptablesCmd, fullArgs...).CombinedOutput() // Don't log err here - callers might not think it is an error. }