From 3ba8a68f2c7c5f0aeedd30a6fe6d26df8257d345 Mon Sep 17 00:00:00 2001 From: Ryan Emerson Date: Wed, 29 Oct 2025 11:36:53 +0000 Subject: [PATCH] Document debug log settings required to show applied Infinispan configuration Closes #43655 Signed-off-by: Ryan Emerson --- docs/guides/server/caching.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/guides/server/caching.adoc b/docs/guides/server/caching.adoc index b763c4e7b86..950d06e96ab 100644 --- a/docs/guides/server/caching.adoc +++ b/docs/guides/server/caching.adoc @@ -125,7 +125,7 @@ This cache is needed for the Brute Force Protection feature to work in a multi-n Action tokens are used for scenarios when a user needs to confirm an action asynchronously, for example in the emails sent by the forgot password flow. The `actionTokens` distributed cache is used to track metadata about action tokens. -TIP: You can see the applied Infinispan configuration in the logs by configuring `--log-level=info,org.keycloak.connections.infinispan:debug`. +TIP: You can see the applied Infinispan configuration in the logs by configuring `--log-level=info,org.keycloak.connections.infinispan.DefaultInfinispanConnectionProviderFactory:debug`. === Volatile user sessions @@ -176,6 +176,8 @@ The configuration file is relative to the `conf/` directory. {project_name} automatically creates all required caches with the expected configurations. You can add additional caches or override the default cache configurations in `conf/cache-ispn.xml` or in your own file provided via `--cache-config-file`. +To see the applied Infinispan configuration in the logs, configure `--log-level=info,org.keycloak.connections.infinispan.DefaultInfinispanConnectionProviderFactory:debug`. + [WARNING] ==== While overriding the default cache configurations via XML is technically possible, it is not supported.