In log4j2.xml, you can set the branch number for each log rotation by setting %i as shown on the page below.
Now, I would like to set the initial value (if it is logged out first) to 000.
Even if the tag says min=000, when the log is output for the first time, the branch number is not shaken and it is displayed as it is.
Is there any other way to achieve the above?
https://qiita.com/pica/items/f801c74848f748f76b58
If you look at this JIRA ticket, if you use version 2.12.0 or later, the following writing style (%i{03}
) will not be able to fill in three digits:
filePattern="${base}/log-%i{03}.log"
私 I have not verified the operation.If you look at the commit history, depending on the version, it might work like %03i
.It seems that the format has been changed from %03i
to %i{03}
to match other definitions.
© 2025 OneMinuteCode. All rights reserved.