From c3dc0336cfe8b7965b8a85cce4ed83bf9c85ab53 Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 18 May 2020 00:03:46 -0700 Subject: [PATCH] Configure the 'spring.data.gemfire.cache.log-level' property in terms of 'gemfire.log-level' and default to 'error'. --- .../http-session/src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-geode-samples/caching/http-session/src/main/resources/application.properties b/spring-geode-samples/caching/http-session/src/main/resources/application.properties index d5ec1af9..4fd8046f 100644 --- a/spring-geode-samples/caching/http-session/src/main/resources/application.properties +++ b/spring-geode-samples/caching/http-session/src/main/resources/application.properties @@ -1,7 +1,7 @@ # Spring Boot application.properties for the HTTP Session State Caching Example application. spring.application.name=HttpSessionCachingApplication -spring.data.gemfire.cache.log-level=error +spring.data.gemfire.cache.log-level=${gemfire.log-level:error} spring.session.data.gemfire.cache.client.pool.name=DEFAULT spring.session.data.gemfire.session.region.name=Sessions server.servlet.session.timeout=15