Skip to content

Commit

Permalink
refactor: log level 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rimrim990 committed Aug 30, 2023
1 parent 704613d commit c5b74a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/file-info-appender.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<appender name="FILE-INFO" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>./log/info/info-${BY_DATE}.log</file>
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
<level>DEBUG</level>
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<include resource="file-warn-appender.xml"/>
<include resource="file-error-appender.xml"/>

<root level="INFO">
<root level="DEBUG">
<appender-ref ref="FILE-INFO"/>
<appender-ref ref="FILE-WARN"/>
<appender-ref ref="FILE-ERROR"/>
Expand Down

0 comments on commit c5b74a6

Please sign in to comment.