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

  • SEARCH
  • Home
  • 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 6333007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:22:46+00:00 2026-05-24T18:22:46+00:00

I have a service application that on startup reads an XML file and starts

  • 0

I have a service application that on startup reads an XML file and starts a thread for each entry in the XML file. Each thread creates an instance of a worker class which requires a logger to log any output to a thread specific log file.

In the services app.config I have the log4net configuration settings set to use an XML appender and the file is specified as a PatternString as shown below:

<appender name="XmlAppender" type="log4net.Appender.FileAppender">
  <file type="log4net.Util.PatternString" value="D:\Temp\Logs\%property{LogName}.log" />
  <immediateFlush value="true"/>
  <appendToFile value="true" />
  <layout type="log4net.Layout.SimpleLayout" />
</appender>

In a thread locked method for each instance of the worker class created I get the logger using the log4net.LogManager.GetLogger("MyLogger") method and then I set the current threads PatternStrings LogName property using ThreadContext.Properties["LogName"] = "Log name prefix".

All of the files are created but when the logger is called it just logs all message to one seemingly random file.

I have searched about for quite a while trying to find a solution or some answers to what I am doing wrong but I have had no luck.

Does anyone have any idea why this is happening?

  • 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-24T18:22:47+00:00Added an answer on May 24, 2026 at 6:22 pm

    I think I have worked out the issue. The steps follow:

    • Create an an individual ILoggerRepository object (loggerRepository in this example) on each thread.
    • Set the ThreadContexts property for the log file name.
    • Use the XmlConfiguratior to configure the repository.
    • Use the LogManager to Get the named logger (in the XML configuration file) using the named LoggerRepository for that thread.

    In return I get a new configured logger pointing to the respective file for that thread.

    The XML configuration is the same as it was originally and shown here for completeness:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <configSections>    
        <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
      </configSections>
      <log4net>
        <logger name="ProductionLogger">
          <appender-ref ref="XmlAppender"/>      
          <level value="ALL"/>
        </logger>
        <appender name="XmlAppender" type="log4net.Appender.FileAppender">
          <file type="log4net.Util.PatternString" value="D:\Temp\Logs\%property{LogName}.log" />
          <immediateFlush value="true"/>
          <appendToFile value="true" />
          <layout type="log4net.Layout.SimpleLayout" />
        </appender>
      </log4net>
    </configuration>
    

    The code to create the loggers is below. Each time this code is run it is run in its own thread.

    ILoggerRepository loggerRepository = LogManager.CreateRepository(logFileName + "Repository");
    ThreadContext.Properties["LogName"] = logFileName;
    log4net.Config.XmlConfigurator.Configure(loggerRepository);
    ILog logger = LogManager.GetLogger(logFileName + "Repository", "ProductionLogger");
    

    This seems to work with no issues so far. I will be moving forward with this solution for the moment but I will update this post if I find out anything else.

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

Sidebar

Related Questions

I have an service application that reads a config file containing a list of
I have a wcf service application that has some application startup code in the
I have a service application that on startup and shutdown logs an event log
I have a c# windows service application that is crashing without throwing an exception
enter code here Hi All, I have a simple windows service application that connects
I have a silverlight/RIA service application and in that, after I save the data
I have a Web Service and an Android application that uses this web service.
I have a WCF service and a Silverlight application that work just fine when
I have a legacy Windows server service and (spawned) application that works fine in
If you have a windows service and a windows forms application that uses the

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.