From 42714750399a78c25841a28aa9d90bba2daf60aa Mon Sep 17 00:00:00 2001 From: Natanael Rodriguez Ramos Date: Thu, 29 May 2025 11:14:08 +0100 Subject: [PATCH] fix(spn-hub): Updated wrong log level --- cmds/hub/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmds/hub/main.go b/cmds/hub/main.go index 28a0188c..faef69ae 100644 --- a/cmds/hub/main.go +++ b/cmds/hub/main.go @@ -77,7 +77,7 @@ func initializeGlobals(cmd *cobra.Command, args []string) { // Set default log level. log.SetLogLevel(log.WarningLevel) - _ = log.Start(log.InfoLevel.String(), true, "") + _ = log.Start("warning", true, "") // Configure SPN binary updates. configure.DefaultBinaryIndexName = "SPN Binaries"