Skip to content

Commit

Permalink
Merge pull request #87 from JNU-econovation/fix_logging
Browse files Browse the repository at this point in the history
[FIX] 파일 로깅 오류 수정
  • Loading branch information
inferior3x authored Dec 10, 2024
2 parents 3bf8c87 + 0a7cc0f commit d4730b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/network-api/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
</encoder>
</appender>

<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<!-- 작성 완료되기 전의 로그 파일 이름 -->
<file>${user.home}/whozin_log/temp.log</file>
<!-- 시간을 기준으로 파일을 관리함 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 시간과 파일 크기를 기준으로 파일을 관리함 -->
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
<!-- 하루 단위(%d)로 log를 남기며 최대 용량을 넘어가면 %i로 구별하여 저장 -->
<fileNamePattern>log_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<fileNamePattern>${user.home}/whozin_log/%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<!-- 한 파일은 최대 10MB -->
<maxFileSize>10MB</maxFileSize>
<!-- 로그 파일들은 30일(%d)까지 유지-->
Expand Down

0 comments on commit d4730b4

Please sign in to comment.