From 6e67b8dae2494a7f6a51307d30d6a6d9148ac4b1 Mon Sep 17 00:00:00 2001 From: Massimiliano Assante Date: Wed, 10 Feb 2021 15:56:46 +0100 Subject: [PATCH] lowered the level of log "OIDC token is null in cache proxy" --- .../org/gcube/portal/threadlocalexec/SmartGearsPortalValve.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/gcube/portal/threadlocalexec/SmartGearsPortalValve.java b/src/main/java/org/gcube/portal/threadlocalexec/SmartGearsPortalValve.java index 155af15..74ccca7 100644 --- a/src/main/java/org/gcube/portal/threadlocalexec/SmartGearsPortalValve.java +++ b/src/main/java/org/gcube/portal/threadlocalexec/SmartGearsPortalValve.java @@ -192,7 +192,7 @@ public class SmartGearsPortalValve extends ValveBase { JWTToken authToken = JWTCacheProxy.getInstance().getOIDCToken(user, sessionId); if (authToken == null) { 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); } else { _log.error("OIDC token is null in cache proxy, cannot continue!");