Skip to content

Commit

Permalink
Reduce test logging (#5600)
Browse files Browse the repository at this point in the history
The amount of test logging is preventing our test reports from uploading to
Github.
  • Loading branch information
onobc authored Dec 9, 2023
1 parent 107d46b commit b76aeec
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<root>
<level value="DEBUG"/>
</root>
</configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.testcontainers" level="ERROR"/>
<logger name="com.github.dockerjava" level="ERROR"/>
<logger name="org.flywaydb" level="DEBUG"/>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="org.springframework.cloud" level="DEBUG"/>
<root>
<level value="INFO"/>
</root>
</configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.testcontainers" level="ERROR"/>
<logger name="com.github.dockerjava" level="ERROR"/>
<logger name="org.flywaydb" level="DEBUG"/>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.testcontainers" level="ERROR"/>
<logger name="com.github.dockerjava" level="ERROR"/>
<logger name="org.flywaydb" level="DEBUG"/>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.springframework.web" level="INFO"/>
<logger name="org.springframework.cloud.skipper" level="DEBUG"/>
<logger name="org.springframework.boot" level="DEBUG"/>
<logger name="org.flywaydb" level="DEBUG"/>
<logger name="org.testcontainers" level="ERROR"/>
<logger name="com.github.dockerjava" level="ERROR"/>
<logger name="org.flywaydb" level="DEBUG"/>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<root>
<level value="INFO"/>
</root>
</configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.testcontainers" level="ERROR"/>
<logger name="com.github.dockerjava" level="ERROR"/>
<logger name="org.flywaydb" level="DEBUG"/>
</configuration>

0 comments on commit b76aeec

Please sign in to comment.