Click here to Skip to main content
Licence CPOL
First Posted 8 May 2007
Views 40,876
Downloads 670
Bookmarked 39 times

Use Multiple log4net Outputs from One Application

By | 8 May 2007 | Article
By using this article, you can easily configure multiple output log files from log4net

Introduction

This is an article simply to demonstrate how to use several output log files depending on the library or the application.

Using the Code

Developers who develop class libraries may need to log details separate from the main application to support users or to quickly retrieve the data. But when they try to implement this, they will face a problem. This is because normally log4net has only one config section under the ASP.NET web.config file or Windows application app.config file. To overcome this problem, you can use different logger entries which define the output.

Default case:

<log4net>
    <appender type="log4net.Appender.RollingFileAppender" name="RollingFile">
        <file value="c:\\logs\\Log.txt" />
        <layout type="log4net.Layout.PatternLayout" />
            <conversionpattern value="%d [%t] %-5p %c - %m%n" />
        </layout>
    </appender>

    <root>
        <level value="ALL" />
        <appender-ref ref="RollingFile" />
    </root>
</log4net>

When you specify the <root /> tag, it says all the log data will log to that output file. To stop this, we need to remove the <root /> element and have separate <logger /> tags for every library or the application. You also need to specify your root namespace for the library.

<log4net>
    <appender type="log4net.Appender.RollingFileAppender" name="classApp1">
      <file value="c:\\Library1.txt" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionpattern value="%d [%t] %-5p %c - %m%n" />
      </layout>
    </appender>

    <appender type="log4net.Appender.RollingFileAppender" name="classApp2">
      <file value="c:\\Library2.txt" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionpattern value="%d [%t] %-5p %c - %m%n" />
      </layout>
    </appender>

    <appender type="log4net.Appender.RollingFileAppender" name="application">
      <file value="c:\\Application.txt" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionpattern value="%d [%t] %-5p %c - %m%n" />
      </layout>
    </appender>

    <logger name="ClassLibrary1">
      <level value="ERROR" />
      <maximumfilesize value="256KB" />
      <param value="ERROR" name="Threshold" />

      <appender-ref ref="classApp1" />
    </logger>

    <logger name="ClassLibrary2">
      <level value="WARN" />
      <maximumfilesize value="256KB" />
      <param value="WARN" name="Threshold" />

      <appender-ref ref="classApp2" />
    </logger>

    <logger name="WindowsApplication1">
      <level value="WARN" />
      <maximumfilesize value="256KB" />
      <param value="WARN" name="Threshold" />

      <appender-ref ref="application" />
    </logger>

  </log4net>

You can see three <logger /> items and separate tags referenced from those loggers. "name" of the <logger /> will specify the root namespace of the library or the application. Specify which appender you need to refer from the logger. When executing the application, if something is written to the log from the ClassLibrary2.Class2, it will refer the <logger name="ClassLibrary2" /> entry. This means the output will be on c:\\Library2.txt file. This way you can specify any amount of loggers dynamically.

Note: The code in Visual Studio 2005 format.

Points of Interest

With this option, we can customize our log details as required. Per class logger is also possible.

History

  • 9th May, 2007: First version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Charith M

Web Developer

Sri Lanka Sri Lanka

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionDoes this work with .Net 4.0? I can't get it to work with 4.0 Pinmemberanhlunnhaque9:21 7 Mar '12  
AnswerRe: Does this work with .Net 4.0? I can't get it to work with 4.0 PinmemberCharith M19:58 8 Mar '12  
GeneralMy vote of 5 PinmemberRattler070116:50 21 Feb '11  
QuestionHow to setup default logger? PinmemberHeinzTomato0:58 18 Mar '10  
AnswerRe: How to setup default logger? PinmemberCharith M1:47 18 Mar '10  
GeneralMultiple files from same class PinmvpGiorgi Dalakishvili10:52 9 Jan '09  
GeneralRe: Multiple files from same class PinmemberCharith M16:09 11 Jan '09  
GeneralSystem.Diagnostics.Trace PinmemberPaul A. Howes3:09 17 May '07  
GeneralRe: System.Diagnostics.Trace Pinmembermicdev4222:02 10 Oct '08  
GeneralRe: System.Diagnostics.Trace PinmemberPaul A. Howes1:48 11 Oct '08  
QuestionSource code for log4net Pinmemberjacob@zetapoint.com1:05 15 May '07  
AnswerRe: Source code for log4net PinmemberCharith M2:17 15 May '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 9 May 2007
Article Copyright 2007 by Charith M
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid