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)