You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.warnf("Rejected submitting of the event for key: %s. Probably server going to shutdown", key);
226
-
227
-
if (logger.isDebugEnabled()) {
228
-
logger.debug(ree.getMessage(), ree);
229
-
}
225
+
logger.errorf("Rejected submitting of the event for key: %s. Value: %s, Server going to shutdown or pool exhausted. Pool: %s", key, workCache.get(key), listenersExecutor.toString());
Copy file name to clipboardExpand all lines: model/infinispan/src/main/java/org/keycloak/models/sessions/infinispan/InfinispanCodeToTokenStoreProvider.java
Copy file name to clipboardExpand all lines: model/infinispan/src/main/java/org/keycloak/models/sessions/infinispan/remotestore/ClientListenerExecutorDecorator.java
Copy file name to clipboardExpand all lines: model/infinispan/src/main/java/org/keycloak/models/sessions/infinispan/remotestore/RemoteCacheInvoker.java
if (status == SessionUpdateTask.CrossDCMessageStatus.NOT_NEEDED) {
72
-
logger.debugf("Skip writing to remoteCache for entity '%s' of cache '%s' and operation '%s'", key, cacheName, operation);
73
+
if (logger.isTraceEnabled()) {
74
+
logger.tracef("Skip writing to remoteCache for entity '%s' of cache '%s' and operation '%s'", key, cacheName, operation);
75
+
}
73
76
return;
74
77
}
75
78
@@ -78,23 +81,25 @@ public <K, V extends SessionEntity> void runTask(KeycloakSession kcSession, Real
78
81
// Double the timeout to ensure that entry won't expire on remoteCache in case that write of some entities to remoteCache is postponed (eg. userSession.lastSessionRefresh)
79
82
finallongmaxIdleTimeMs = loadedMaxIdleTimeMs * 2;
80
83
81
-
logger.debugf("Running task '%s' on remote cache '%s' . Key is '%s'", operation, cacheName, key);
84
+
if (logger.isTraceEnabled()) {
85
+
logger.tracef("Running task '%s' on remote cache '%s' . Key is '%s'", operation, cacheName, key);
0 commit comments