lowered the level of log "OIDC token is null in cache proxy"
This commit is contained in:
parent
62a6375372
commit
6e67b8dae2
|
@ -192,7 +192,7 @@ public class SmartGearsPortalValve extends ValveBase {
|
||||||
JWTToken authToken = JWTCacheProxy.getInstance().getOIDCToken(user, sessionId);
|
JWTToken authToken = JWTCacheProxy.getInstance().getOIDCToken(user, sessionId);
|
||||||
if (authToken == null) {
|
if (authToken == null) {
|
||||||
if (FORCE_LOGOUT_ON_MISSING_OIDC) {
|
if (FORCE_LOGOUT_ON_MISSING_OIDC) {
|
||||||
_log.warn("OIDC token is null in cache proxy, force redirecting to logut URI");
|
_log.trace("OIDC token is null in cache proxy, force redirecting to logut URI");
|
||||||
forceLogout(response);
|
forceLogout(response);
|
||||||
} else {
|
} else {
|
||||||
_log.error("OIDC token is null in cache proxy, cannot continue!");
|
_log.error("OIDC token is null in cache proxy, cannot continue!");
|
||||||
|
|
Loading…
Reference in New Issue