Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3282096
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:53:22+00:00 2026-05-17T19:53:22+00:00

I have a solution consisting of a main winforms app, with associated internally written

  • 0

I have a solution consisting of a main winforms app, with associated internally written class library dll’s from which I wish to log. This logging should performed by the same logger, regardless of whether the main UI client or the associated dll’s call this. The dll’s may of course be used by other apps that have different loggers in other solutions, but in these circumstances will have a different log4net config and maybe a different suite of appenders altogether.

One approach would be to create a singleton within the main app and log from that, however since log4net is its own singleton, that can be referenced so as long as we pass the same string (or type) to log4net.LogManager.GetLogger we will be logging to the same destination (in my case I wish to use a RollingFileAppender).

This works. However, given that the DLL will have a number of classes it would mean each class instantiation or static class from which we wish to log would require i) an argument defining the logger name (in order to log to the same destination) and ii) at each entry point would need to call log4net.LogManager.GetLogger(loggerName).

What is the best pattern to use here? Would the correct approach be to create a singleton instance in each assembly? My concern here is that we will still need to pass in the logger name to each entry point for the dll, which seems like overkill. In order to avoid passing in the logger name, I might assume that it is always equal to System.Reflection.Assembly.GetCallingAssembly().GetName().Name.

If this is all too difficult for log4net, are there other easier solutions such as the Enterprise Logging Block?
Or is the best solution an aspect oriented programming (AOP) approach?

Reference for anti-pattern approach for singleton here .

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T19:53:22+00:00Added an answer on May 17, 2026 at 7:53 pm

    Almost one year later, but I thought I would contribute anyway!

    Based on your comment to Carl’s post, I think that maybe you misunderstand how log4net works. Yes, the loggername does identify the logger. Yes, a logger can have many appenders. BUT, many loggers can also write to the SAME appender. So, you could configure loggers “A”, “B”, and “C” to all log to file “X”. You can get the loggers like this:

    ILog logger_a = LogManager.GetLogger("A");
    ILog logger_b = LogManager.GetLogger("B");
    ILog logger_c = LogManager.GetLogger("C");
    

    Now, if you log with any of these loggers, they CAN all go to the same place (file “X”) if you configured them that way.

    The advantage to NOT using the same logger name throughout your application is that you can control the level of logging in different places in your application via the config file. So, if the code that is using loggers “A” and “B” is working fine, but the code that is using logger “C” is having a problem, you could turn “A” and “B” off, and turn “C” all the way up. That way you have less information to have to dig through to find your problem.

    Most people (or at least most log4net examples) actually create a static logger instance per CLASS, named for that class (I don’t remember the exact syntax but it is easy to find examples). This gives you a very high level of granularity for controlling your logging.

    In your app.config file, you can control all loggers at the same level by configuring a single logger called “*” or you can configure specific loggers (by using the fully qualified typename) or you can even configure by part of the fully qualified typename. For example, you could very easily make all classes in namespace ABC log at “info” level, all classes in namespace DEF log at “error” level, and all classes in namespace GHI not log at all. AND all of these loggers can log to the same destination (e.g file X).

    Might have been too late to help, but maybe not…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a solution consisting of five projects, each of which compile to separate
I have a solution consisting of 2 projects. One is a DLL, and the
I have a solution consisting of 3 projects. One is a static library, and
I have a solution consisting of several library project and one application project. I
I have a Visual Studio (2008) solution consisting of several projects, not all in
I have a Pocket PC 2003 solution, consisting of three projects, that was created
I have a solution in Visual Studio 2005(professional Edition) which in turn has 8
I have this solution for a single button: myButton.Attributes.Add(onclick, this.disabled=true; + GetPostBackEventReference(myButton).ToString()); Which works
I have a rather large solution consisting of several projects that wants to install
I have a solution with several projects. One of them is a setup project.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.