mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Merge pull request #4891 from chimp1984/increase-log-limit
Increase max number of log files to 20.
This commit is contained in:
commit
8a683f0024
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public class Log {
|
|||
rollingPolicy.setParent(appender);
|
||||
rollingPolicy.setFileNamePattern(fileName + "_%i.log");
|
||||
rollingPolicy.setMinIndex(1);
|
||||
rollingPolicy.setMaxIndex(10);
|
||||
rollingPolicy.setMaxIndex(20);
|
||||
rollingPolicy.start();
|
||||
|
||||
SizeBasedTriggeringPolicy<ILoggingEvent> triggeringPolicy = new SizeBasedTriggeringPolicy<>();
|
||||
|
|
Loading…
Add table
Reference in a new issue