From cd3b0b462f93230da20f3d7545c0064a80543c4c Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 24 Jan 2020 00:41:34 -0800 Subject: [PATCH] Add logging dependencies to enable log output from Spring Session and Apache Geode. Add 'ch.qos.logback:logback-classic' test runtime dependency to classpath. Add 'org.apache.logging.log4j:log4j-to-slf4j' test runtime dependency to classpath. --- spring-session-data-geode/spring-session-data-geode.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-session-data-geode/spring-session-data-geode.gradle b/spring-session-data-geode/spring-session-data-geode.gradle index d00f8f0..50da05e 100644 --- a/spring-session-data-geode/spring-session-data-geode.gradle +++ b/spring-session-data-geode/spring-session-data-geode.gradle @@ -32,8 +32,8 @@ dependencies { testCompile "org.springframework.data:spring-data-geode-test" testCompile slf4jDependencies -// testRuntime "org.apache.logging.log4j:log4j-to-slf4j" -// testRuntime "ch.qos.logback:logback-classic" + testRuntime "ch.qos.logback:logback-classic" + testRuntime "org.apache.logging.log4j:log4j-to-slf4j" integrationTestRuntime "org.springframework.shell:spring-shell"