Hi

We're running CFMX 6.1, interfacing with JRun's version of log4j. We're
successfully talking to log4j - it will write out simple log files according to
our XML config file.

However, when we try to get the DailyRollingFileAppender functionality
working, log4j continues to write output into the same log file instead of
archiving this old file with the specified datestamp.

The attached code sample shows the appender XML from the log4j config file.
It's set to write out a new log file every minute (for testing only).

Has anyone successfully used DailyRollingFileAppender with MX 6.1?

Thanks.

<appender name="info" class="org.apache.log4j.DailyRollingFileAppender">
<param name="File" value="D:/logs/cfusion/live/customLogs/log4jRoll.log"/>
<param name="Append" value="true" />
<param name="DatePattern" value="'.'yyyy-MM-dd-HH-mm"/>
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d %-5p - %m%n"/>
</layout>
</appender>