Re: how to set to RollingFileAppender interval to 5 minutes.

2013-02-15 Thread Yogi Nerella
Ralph, when I configure DatePattern, I recieve the following message, but it honors the parameter and generates the log files as configured. Is this a bug? 2013-02-15 11:59:11,233 ERROR RollingFile contains an invalid element or attribute DatePattern Yogi On Thu, Feb 14, 2013 at 10:39 AM,

Re: how to set to RollingFileAppender interval to 5 minutes.

2013-02-15 Thread Ralph Goers
I meant the data pattern in the filePattern attribute. As an example see https://svn.apache.org/repos/asf/logging/log4j/log4j2/trunk/core/src/test/resources/log4j-rolling2.xml. It is configured to roll every 2 seconds and to modulate. Ralph On Feb 15, 2013, at 2:18 PM, Yogi Nerella wrote:

Re: how to set to RollingFileAppender interval to 5 minutes.

2013-02-14 Thread Ralph Goers
You should be able to set the pattern to include minutes and then specify the interval on the TriggeringPolicy. If you set it to 5 then it should roll every 5 minutes. If you specify modulate as true then it will occur on the 5, 10, 15, etc minute of the hour. Ralph On Feb 14, 2013, at 9:55