From d59087fe670db9f8e12116d7cddc3b1b047cb19e Mon Sep 17 00:00:00 2001 From: mStar aka a person <12024604-mstarongitlab@users.noreply.gitlab.com> Date: Fri, 26 Apr 2024 17:08:34 +0200 Subject: [PATCH] Github actions are being painful again Need to test something --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 517cbd4..3073517 100644 --- a/main.go +++ b/main.go @@ -3,6 +3,7 @@ package main import ( "embed" "flag" + "fmt" "github.com/sirupsen/logrus" _ "github.com/volatiletech/authboss-renderer" @@ -67,6 +68,7 @@ func main() { func setLogLevelFromArgs() { flag.Parse() + fmt.Printf("Log level received from env: %s\n", *level) switch *level { case "debug": logrus.SetLevel(logrus.DebugLevel)