Skip to content

Commit e28d89b

Browse files
✨ fix : Log DEBUG 모드로 변경
1 parent 0f64565 commit e28d89b

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ application-local.yml
88
application-test.yml
99
kafka-keystore.jks
1010
kafka-truststore.jks
11-
logback-spring.xml
1211

1312
### STS ###
1413
.apt_generated

src/main/resources/logback-spring.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration scan="true" scanPeriod="30 seconds">
3+
<property name="moduleId" value="around_hub_spring_boot"/>
4+
<property name="type" value="around_hub"/>
5+
<property name="logback" value="logback"/>
6+
<property name="logdir" value="D:\Workspace\LogFiles"/>
7+
8+
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
9+
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
10+
<level>DEBUG</level>
11+
</filter>
12+
<encoder>
13+
<pattern>%green([%d{yyyy-MM-dd HH:mm:ss.SSS}]) %magenta([%-5level]) %highlight([%thread]) %cyan(%logger{30}) %yellow(%msg%n) </pattern>
14+
</encoder>
15+
</appender>
16+
17+
<root level="DEBUG"> <!-- DEBUG, INFO -->
18+
<appender-ref ref="console" />
19+
</root>
20+
</configuration>

0 commit comments

Comments
 (0)