From e18ebbc1489084702d3a249d826f6261c18cbc95 Mon Sep 17 00:00:00 2001 From: alex <8968914+acpana@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:41:29 -0700 Subject: [PATCH] fix: use log level 1 for debug (#3039) Signed-off-by: alex <8968914+acpana@users.noreply.github.com> --- pkg/logging/logging.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/logging/logging.go b/pkg/logging/logging.go index fc0ae228e04..d9f4ec81b13 100644 --- a/pkg/logging/logging.go +++ b/pkg/logging/logging.go @@ -33,7 +33,7 @@ const ( RequestUsername = "request_username" MutationApplied = "mutation_applied" Mutator = "mutator" - DebugLevel = 2 // r.log.Debug(foo) == r.log.V(logging.DebugLevel).Info(foo) + DebugLevel = 1 // r.log.Debug(foo) == r.log.V(logging.DebugLevel).Info(foo) ExecutionStats = "execution_stats" )