From f0e01bcfde429c81343f3281e9e039423e3a7af6 Mon Sep 17 00:00:00 2001 From: libnux Date: Tue, 24 Dec 2019 17:47:27 +0800 Subject: [PATCH] Change log level to 3 when --random-fully is not supported --- pkg/proxy/iptables/proxier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index 4e32b208dcc..f2b4c1bf230 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -869,7 +869,7 @@ func (proxier *Proxier) syncProxyRules() { masqRule = append(masqRule, "--random-fully") klog.V(3).Info("Using `--random-fully` in the MASQUERADE rule for iptables") } else { - klog.V(2).Info("Not using `--random-fully` in the MASQUERADE rule for iptables because the local version of iptables does not support it") + klog.V(3).Info("Not using `--random-fully` in the MASQUERADE rule for iptables because the local version of iptables does not support it") } writeLine(proxier.natRules, masqRule...)