Skip to content

Commit 0083ffe

Browse files
Merge pull request #284 from remmeier/master
Client overwriting my app's logback configuration #276
2 parents 898a031 + 1651835 commit 0083ffe

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

kubernetes/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,12 @@
164164
<version>2.0.0.0</version>
165165
<scope>test</scope>
166166
</dependency>
167+
<dependency>
168+
<groupId>ch.qos.logback</groupId>
169+
<artifactId>logback-classic</artifactId>
170+
<version>1.2.3</version>
171+
<scope>test</scope>
172+
</dependency>
167173
<dependency>
168174
<groupId>junit</groupId>
169175
<artifactId>junit</artifactId>

util/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@
5151
<artifactId>slf4j-api</artifactId>
5252
<version>1.7.25</version>
5353
</dependency>
54-
<dependency>
55-
<groupId>ch.qos.logback</groupId>
56-
<artifactId>logback-classic</artifactId>
57-
<version>1.2.3</version>
58-
</dependency>
5954
<dependency>
6055
<groupId>org.bouncycastle</groupId>
6156
<artifactId>bcprov-ext-jdk15on</artifactId>
@@ -73,6 +68,12 @@
7368
<version>4.12</version>
7469
<scope>test</scope>
7570
</dependency>
71+
<dependency>
72+
<groupId>ch.qos.logback</groupId>
73+
<artifactId>logback-classic</artifactId>
74+
<version>1.2.3</version>
75+
<scope>test</scope>
76+
</dependency>
7677
<dependency>
7778
<groupId>org.mockito</groupId>
7879
<artifactId>mockito-core</artifactId>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
4+
<encoder>
5+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
6+
</encoder>
7+
</appender>
8+
9+
<root level="info">
10+
<appender-ref ref="console" />
11+
</root>
12+
</configuration>

0 commit comments

Comments
 (0)