Skip to content

Commit

Permalink
fix: logback configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
zeus6768 committed Oct 15, 2024
1 parent 70ffda0 commit 3dc6e4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/src/main/resources/logger/file/error-appender.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<included>
<appender name="error-appender" class="ch.qos.logback.core.rolling.RollingFileAppender">

<file>${LOG_FILE_PATH}/${DATE_FORMAT}/error.log</file>
<file>${LOG_FILE_PATH}/error.log</file>

<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>ERROR</level>
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/logger/file/info-appender.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<included>
<appender name="info-appender" class="ch.qos.logback.core.rolling.RollingFileAppender">

<file>${LOG_FILE_PATH}/${DATE_FORMAT}/info.log</file>
<file>${LOG_FILE_PATH}/info.log</file>

<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>INFO</level>
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/logger/file/warn-appender.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<included>
<appender name="warn-appender" class="ch.qos.logback.core.rolling.RollingFileAppender">

<file>${LOG_FILE_PATH}/${DATE_FORMAT}/warn.log</file>
<file>${LOG_FILE_PATH}/warn.log</file>

<filter class="ch.qos.logback.classic.filter.LevelFilter">
<level>WARN</level>
Expand Down

0 comments on commit 3dc6e4f

Please sign in to comment.