From 04e8279ae449fae2eeb7fe0f2bfc20ac65c87c23 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Wed, 19 Jul 2023 09:04:27 +0200 Subject: [PATCH] Change log level for JWT Cross login warning to debug --- internal/auth/jwt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/auth/jwt.go b/internal/auth/jwt.go index 09e12e4..8df7017 100644 --- a/internal/auth/jwt.go +++ b/internal/auth/jwt.go @@ -92,7 +92,7 @@ func (ja *JWTAuthenticator) Init(auth *Authentication, conf interface{}) error { } } else { ja.publicKeyCrossLogin = nil - log.Warn("environment variable 'CROSS_LOGIN_JWT_PUBLIC_KEY' not set (cross login token based authentication will not work)") + log.Debug("environment variable 'CROSS_LOGIN_JWT_PUBLIC_KEY' not set (cross login token based authentication will not work)") } return nil