[
https://issues.apache.org/jira/browse/LOG4J2-43?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12910148#action_12910148
]
Lukasz Wielek commented on LOG4J2-43:
-------------------------------------
Looks like making rollOver public will not be sufficient.
I think it is required to add forceRollOver method which will include code
similar to subAppend method:
public void forceRollOver()
{
long n = System.currentTimeMillis();
if (n >= nextCheck)
{
now.setTime(n);
nextCheck = rc.getNextCheckMillis(now);
try
{
rollOver();
} catch (IOException ioe)
{
LogLog.error("rollOver() failed.", ioe);
}
}
}
> Allow DailyRollingFile appender to rollover programmatically
> -------------------------------------------------------------
>
> Key: LOG4J2-43
> URL: https://issues.apache.org/jira/browse/LOG4J2-43
> Project: Log4j 2
> Issue Type: New Feature
> Components: Appenders
> Reporter: Lukasz Wielek
> Priority: Minor
>
> Allow DailyRollingFile appender to rollover programmatically without
> appending any new log event.
> This will allow log file rollover, in case there's no messages to be logged
> for a long time,
> but the current log file needs to be backed up.
> I think making the rollOver method public would be sufficient :)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]