Skip to content

Commit

Permalink
Merge pull request #226 from sopt-makers/yongtaek/#225
Browse files Browse the repository at this point in the history
[FIX] error, info 로그 저장 디렉토리 복구
  • Loading branch information
dragontaek-lee authored Feb 28, 2024
2 parents efb8b48 + 6062c5b commit df55d68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion operation-api/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 operation-api/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 df55d68

Please sign in to comment.