Declare 'org.jgroups' Logger configuration in JUL, Log4j and Logback properties/XML configuration files.

This commit is contained in:
John Blum
2022-10-13 15:11:49 -07:00
parent 403b853ae2
commit 82c9407ce2
3 changed files with 4 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
# java.util.logging (JUL) configuration
org.apache=ERROR
org.jgroups=ERROR
org.springframework=ERROR
org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter=OFF
org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter.useParentHandlers=false

View File

@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="error">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
@@ -10,6 +11,7 @@
</Appenders>
<Loggers>
<Logger name="org.apache.geode" level="error"/>
<Logger name="org.jgroups" level="error"/>
<Logger name="org.springframework" level="error"/>
<Logger name="org.springframework.data.gemfire.listener.adapter.ContinuousQueryListenerAdapter" level="off" additivity="false"/>
<Logger name="org.springframework.data.gemfire.support.SpringContextBootstrappingInitializer" level="off" additivity="false"/>

View File

@@ -18,6 +18,7 @@
</appender>
<logger name="ch.qos.logback" level="${logback.log.level:-ERROR}"/>
<logger name="org.jgroups" level="logback.log.level:-ERROR}"/>
<logger name="org.apache.geode" level="${logback.log.level:-ERROR}"/>
<logger name="org.springframework" level="${logback.log.level:-ERROR}"/>