mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 23:12:06 -03:30
Fix logger call to align arguments with format pattern (#44236)
Signed-off-by: Lucas <lucas.bickel@adfinis.com>
This commit is contained in:
parent
02803528d6
commit
083d79c560
@ -268,7 +268,7 @@ public final class CacheConfigurator {
|
||||
throw cacheNotFound(name);
|
||||
}
|
||||
if (builder.memory().maxCount() == -1) {
|
||||
logger.infof("Offline sessions should have a max count set to avoid excessive memory usage. Setting a default cache limit of %d for cache %s.", name, SESSIONS_CACHE_DEFAULT_MAX);
|
||||
logger.infof("Offline sessions should have a max count set to avoid excessive memory usage. Setting a default cache limit of %d for cache %s.", SESSIONS_CACHE_DEFAULT_MAX, name);
|
||||
builder.memory().maxCount(SESSIONS_CACHE_DEFAULT_MAX);
|
||||
}
|
||||
if (builder.clustering().hash().attributes().attribute(HashConfiguration.NUM_OWNERS).get() != 1 &&
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user