Skip to content

Commit

Permalink
fix: logback version
Browse files Browse the repository at this point in the history
  • Loading branch information
mvallim committed Mar 7, 2023
1 parent 16cc42c commit 62a213e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -254,13 +254,13 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
<version>1.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.4.5</version>
<version>1.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
13 changes: 5 additions & 8 deletions src/test/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<Pattern>%d{ISO8601} [%thread] %-5level %logger{36} - %msg%n</Pattern>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{5} - %msg%n</pattern>
</encoder>
</appender>

<logger name="com.base22" level="TRACE"/>

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

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

</configuration>

0 comments on commit 62a213e

Please sign in to comment.