Skip to content

Commit

Permalink
fix: 쓰기가 완료된 로그 파일을 저장하는 위치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
inferior3x committed Dec 8, 2024
1 parent d372a8e commit 0f5e3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/network-api/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<!-- 시간을 기준으로 파일을 관리함 -->
<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/log_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<!-- 한 파일은 최대 10MB -->
<maxFileSize>10MB</maxFileSize>
<!-- 로그 파일들은 30일(%d)까지 유지-->
Expand Down

0 comments on commit 0f5e3ae

Please sign in to comment.