Skip to content

Commit 27680dc

Browse files
committed
fixes #238
1 parent a1e15e2 commit 27680dc

2 files changed

Lines changed: 20 additions & 14 deletions

File tree

pom.xml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -147,24 +147,19 @@
147147
</exclusions>
148148
</dependency>
149149
<dependency>
150-
<groupId>org.apache.logging.log4j</groupId>
151-
<artifactId>log4j-api</artifactId>
152-
<version>2.22.1</version>
153-
</dependency>
154-
<dependency>
155-
<groupId>org.apache.logging.log4j</groupId>
156-
<artifactId>log4j-core</artifactId>
157-
<version>2.22.1</version>
150+
<groupId>org.slf4j</groupId>
151+
<artifactId>slf4j-api</artifactId>
152+
<version>2.0.10</version>
158153
</dependency>
159154
<dependency>
160-
<groupId>org.apache.logging.log4j</groupId>
161-
<artifactId>log4j-slf4j2-impl</artifactId>
162-
<version>2.22.1</version>
155+
<groupId>ch.qos.logback</groupId>
156+
<artifactId>logback-core</artifactId>
157+
<version>1.5.18</version>
163158
</dependency>
164159
<dependency>
165-
<groupId>org.slf4j</groupId>
166-
<artifactId>slf4j-api</artifactId>
167-
<version>2.0.10</version>
160+
<groupId>ch.qos.logback</groupId>
161+
<artifactId>logback-classic</artifactId>
162+
<version>1.5.13</version>
168163
</dependency>
169164
<dependency>
170165
<groupId>commons-io</groupId>

src/main/resources/logback.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<configuration>
2+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
3+
<encoder>
4+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
5+
</encoder>
6+
</appender>
7+
8+
<root level="info">
9+
<appender-ref ref="STDOUT" />
10+
</root>
11+
</configuration>

0 commit comments

Comments
 (0)