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 |
|
Jose Antonio Cortijo Solera
 |
| 02/10/2006 12:15 PM |
|
Hi,
I am pretty newbie using log4net and I would like to have for a asp.net page a rolling file appender for the debug log statement and other smtp appender for error logs statements.
Is it possible to achieve this behaviour?
Thanks in advance.
Jose Antonio Cortijo Solera
Dpto. de Informática
INDITEX TEMPE
mailto:joseacs@tempe.es
Tlfno. 966657500 Ext. 40969
|
|
|
|
|
Nicko Cadell
 |
| 02/28/2006 7:35 PM |
|
Yes you can do this by referencing both (or more) appenders from the logger and setting a <threshold> on the appender itself, for example:
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender"> <threshold value="INFO" /> ... </appender>
<appender name="FileAppender" type="log4net.Appender.FileAppender"> <threshold value="DEBUG" /> ... </appender>
<root> <appender-ref ref="ConsoleAppender" /> <appender-ref ref="FileAppender" /> </root>
Cheers, Nicko
|
|
|
|
|
|
| You are not authorized to post a reply. |
|
|
|
ActiveForums 3.7
|