I have the following RollingFileAppender config:
<appender name="appender.VTBGPRS" type="log4net.Appender.RollingFileAppender">
<rollingStyle value="Size" />
<file value="mylog" />
<staticLogFileName value="false" />
<appendToFile value="true" />
<maximumFileSize value="100KB" />
<maxSizeRollBackups value="20" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %logger{1} - %message%newline" />
</layout>
</appender>
And I have files named mylog, mylog.1, mylog.2, etc. I want to add date time stamp to the file name. For example mylog-2012-07.
I can't use datePattern because I rollingStyle is set to Size.
How can I add date time stamp to the file name?