Skip to content

Commit

Permalink
Set root logging level for tests to debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaMaciaszek committed May 12, 2023
1 parent fd0958e commit 07ded06
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions spring-cloud-openfeign-core/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>

<root level="debug">
<appender-ref ref="STDOUT" />
</root>
</configuration>

0 comments on commit 07ded06

Please sign in to comment.