The Log4Net mailing list is a great source of information about using log4Net, in this forum we collect all the messages in the log4net user list and some selected threads from the developer list.
| Author |
Messages |
|
Bill McCormick
 |
| 10/02/2008 8:39 PM |
|
Hello,
The Composite rollingStyle doesn't seem to work for the FileAppender as it does for the RollingFileAppender. That is, I have one TrittiSvcLog.xml file that keeps getting bigger and bigger but I have a current TrittiSvcLog.txt and a TrittiSvcLog.txt20081001 from yesterday. Also, is there a way to have the file be named TrittiSvcLog-20081001.txt instead?
Thanks,
Bill
<appender name="FileAppender" type="log4net.Appender.FileAppender"> <threshold value="DEBUG" /> <file value="Logs/TrittiSvcLog.xml" /> <appendToFile value="true" /> <rollingStyle value="Composite" /> <datePattern value="yyyyMMdd" /> <maxSizeRollBackups value="30" /> <maximumFileSize value="100MB" /> <layout type="log4net.Layout.XmlLayoutSchemaLog4j"> <locationInfo value="true" /> </layout> </appender> <appender name="RollingFile" type="log4net.Appender.RollingFileAppender"> <threshold value="INFO" /> <file value="Logs/TrittiSvcLog.txt" /> <appendToFile value="true" /> <rollingStyle value="Composite" /> <datePattern value="yyyyMMdd" /> <maxSizeRollBackups value="30" /> <maximumFileSize value="100MB" /> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%date{yyyyMMdd HH:mm:ss,fff} %-8timestamp %level %thread %logger - %message%newline%exception" /> </layout> </appender>
|
|
|
|
|
Bill McCormick
 |
| 10/03/2008 5:06 PM |
|
Anybody have any idea on this?
Thanks!!
|
|
|
|
|
|
| You are not authorized to post a reply. |
|
|
|
ActiveForums 3.7
|