Merge pull request #9946 from Maiklins/Java-1462-reduce-logging-modules-core-java-io-2-spring-ejb-beans-spring-boot-security-spring-data-jpa-3

Java-1461 Reduce logging - core-java-io-2, spring-ejb-beans, spring-boot-security
This commit is contained in:
Dhawal Kapil 2020-08-31 20:35:06 +05:30 committed by GitHub
commit 55a5210a91
5 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="15 seconds" debug="false">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>[%d{ISO8601}]-[%thread] %-5level %logger - %msg%n</pattern>
</encoder>
</appender>
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>

View File

@ -7,7 +7,7 @@
</encoder>
</appender>
<root level="INFO">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>

View File

@ -0,0 +1,2 @@
logging.level.root=ERROR
logging.level.com.baeldung.integrationtesting=ERROR

View File

@ -131,6 +131,12 @@
<configuration>
<!-- Fork every test because it will launch a separate AS instance -->
<forkMode>always</forkMode>
<systemProperties>
<property>
<name>java.util.logging.config.file</name>
<value>src/test/resources/logging.properties</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>

View File

@ -0,0 +1,2 @@
handlers = java.util.logging.ConsoleHandler
java.util.logging.ConsoleHandler.level = SEVERE