Keep 5 days of logs instead of 30

This commit is contained in:
Teemu Patja 2017-11-08 09:05:53 +02:00
parent a29a366c47
commit 64e556c525
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!-- keep 30 days of history -->
<maxHistory>30</maxHistory>
<!-- keep 10 days of history -->
<maxHistory>10</maxHistory>
</rollingPolicy>
<encoder>
<charset>UTF-8</charset>

View File

@ -16,8 +16,8 @@
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
<maxFileSize>100MB</maxFileSize>
</timeBasedFileNamingAndTriggeringPolicy>
<!-- keep 30 days of history -->
<maxHistory>30</maxHistory>
<!-- keep 5 days of history -->
<maxHistory>5</maxHistory>
</rollingPolicy>
<encoder>
<charset>UTF-8</charset>