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 |
|
nmarun
 |
| 04/30/2007 7:35 PM |
|
Hi,
I'm having an trouble with %l and %level specifiers. My RollingLogFileAppender is as below:
[CODE]
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> <file value="..\\Logs\\CurrentLog.log" /> <appendToFile value="true" /> <datePattern value="yyyyMMdd" /> <rollingStyle value="Date" /> <filter type="log4net.Filter.LevelRangeFilter"> <acceptOnMatch value="true" /> <levelMin value="INFO" /> <levelMax value="FATAL" /> </filter> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%level" /> </layout> </appender> [/CODE]
When i look into the log file, I see a value of:
'Log4NetWeb.Default.Page_Load(c:\arun\testprojects\log4netsamplesolution\log4netweb\default.aspx.cs:39)evel'
It seems like the conversion of %l is occurring first, thus showing the location and then 'evel' is appended to it. How do I correct it?
Thanks in advance, Arun -- View this message in context: http://www.nabble.com/-l-to--level-difference..-tf3670928.html#a10257481 Sent from the Log4net - Users mailing list archive at Nabble.com.
|
|
|
|
|
nicko@apache.org
 |
|
nmarun
 |
| 04/30/2007 8:27 PM |
|
Hi Nick,
I was using an older version. The latest one works perfectly fine. Thanks again Arun
|
|
|
|
|
|
| You are not authorized to post a reply. |
|
|
|
ActiveForums 3.7
|