diff --git a/pkg/logging/main.go b/pkg/logging/main.go index 75fcc10..afa89c1 100644 --- a/pkg/logging/main.go +++ b/pkg/logging/main.go @@ -47,7 +47,7 @@ func sanitize(msg string) string { } func ParseLogLevel(level string) slog.Level { - switch level { + switch strings.ToLower(level) { case "debug": return slog.LevelDebug case "info":