Benjamin Jaton created LOG4J2-1725:
--------------------------------------
Summary: RollingFileAppender's filePattern not reloaded when using
monitorInterval
Key: LOG4J2-1725
URL: https://issues.apache.org/jira/browse/LOG4J2-1725
Project: Log4j 2
Issue Type: Bug
Reporter: Benjamin Jaton
Using the configuration below:
{code}<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="info" monitorInterval="2">
<Appenders>
<RollingFile name="MyRollingFile"
fileName="/usr/local/apps/testlogging/logs/app.log"
filePattern="/usr/local/apps/testlogging/logs/app.log.%i">
<PatternLayout>
<Pattern>%d %p %c{1.} [%t] %m%n</Pattern>
</PatternLayout>
<Policies>
<SizeBasedTriggeringPolicy size="100MB"/>
</Policies>
<DefaultRolloverStrategy max="10"/>
</RollingFile>
</Appenders>
<Loggers>
<Root level="info" includeLocation="false">
<AppenderRef ref="MyRollingFile"/>
</Root>
</Loggers>
</Configuration>{code}
Updating the filePattern to app.log.%i, or app.log.%i.zip won't be taken into
account dynamically.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]