Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
chore: reduce unnecessary logging during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
heiko.rothe committed May 27, 2021
1 parent 420e0d4 commit fb4650e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>

<statusListener class="ch.qos.logback.core.status.NopStatusListener" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
<Pattern>
%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
</Pattern>
</layout>
</appender>

<logger name="de.idealo.spring.stream.binder.sns" level="debug"/>

<root level="warn">
<appender-ref ref="STDOUT" />
</root>

</configuration>

0 comments on commit fb4650e

Please sign in to comment.