Skip to content

Commit

Permalink
[FIX] error, info 로그 저장 디렉토리 복구 #255
Browse files Browse the repository at this point in the history
  • Loading branch information
dragontaek-lee committed Jan 24, 2024
1 parent 51bb92c commit 8fa4d45
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-error-appender.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<included>
<appender name="FILE-ERROR" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file> /home/ubuntu/operation/log/error/error-${BY_DATE}.log</file>
<file> ./log/error/error-${BY_DATE}.log</file>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>ERROR</level>
<onMatch>ACCEPT</onMatch>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/file-info-appender.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<included>
<appender name="FILE-INFO" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file> /home/ubuntu/operation/log/info/info-${BY_DATE}.log</file>
<file> ./log/info/info-${BY_DATE}.log</file>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>INFO</level>
<onMatch>ACCEPT</onMatch>
Expand Down

0 comments on commit 8fa4d45

Please sign in to comment.