From 71ff19476dcf70667eff40e6a474a22a4f95b097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Tue, 13 Jun 2023 16:23:53 +0200 Subject: [PATCH] fix: log level initialisation (#7515) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- pkg/logging/log.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/logging/log.go b/pkg/logging/log.go index 6097a0a5db..08a3344c2c 100644 --- a/pkg/logging/log.go +++ b/pkg/logging/log.go @@ -25,16 +25,16 @@ const ( // Default logging mode is TextFormat. TextFormat = "text" // LogLevelController is the log level to use for controllers plumbing. - LogLevelController = 3 + LogLevelController = 1 // LogLevelClient is the log level to use for clients. - LogLevelClient = 3 + LogLevelClient = 1 ) // Initially, globalLog comes from controller-runtime/log with logger created earlier by controller-runtime. // When logging.Setup is called, globalLog is switched to the real logger. // Call depth of all loggers created before logging.Setup will not work, including package level loggers as they are created before main. // All loggers created after logging.Setup won't be subject to the call depth limitation and will work if the underlying sink supports it. -var globalLog = log.Log +var globalLog = log.Log.V(2) func InitFlags(flags *flag.FlagSet) { // clear flags initialized in static dependencies @@ -50,7 +50,7 @@ func Setup(logFormat string, level int) error { switch logFormat { case TextFormat: // in text mode we use FormatSerialize format - globalLog = klogr.New() + globalLog = klogr.New().V(2) case JSONFormat: zc := zap.NewProductionConfig() // Zap's levels get more and less verbose as the number gets smaller and higher respectively (DebugLevel is -1, InfoLevel is 0, WarnLevel is 1, and so on).