I have a single-threaded application that loads several assemblies at runtime using the following:

objDLL = Assembly.LoadFrom(strDLLs[i]);

I would like the assemblies loaded in this manner to use the same log4net.ILog reference as the rest of the assemblies do. But it appears the runtime loaded assemblies have a different reference altogether and need their own configuration. Does anyone know if a single log4net.ILog can be used across assemblies loaded at runtime using a .NET interface?

Here is the log4net.ILog creation and supporting code in the Program class:

   // Configure log4net using the .config file
   [assembly: log4net.Config.XmlConfigurator(Watch = true)]

   public static class Program
   {
      private static log4net.ILog m_Log = null;

      [STAThread]
      public static void Main(string[] args)
      {
         try
         {
            m_Log = log4net.LogManager.GetLogger(
               MethodBase.GetCurrentMethod().DeclaringType);
         }

      }
   }
link|improve this question
Why would you need them all to have the same ILog? You can have one ILog per class, and they all log to the root logger by default. – Matt Howells Sep 25 '08 at 21:31
feedback

4 Answers

If all your assemblies implement a common interface, then you could have a property or constructor parameter that allows you to pass your local instance of ILog to the dynamically loaded assemblies.

link|improve this answer
feedback

You can get the same logger by specifying a literal logger name string, thus getting the same logger instance.

log4net.LogManager.GetLogger("SomeLogger");
link|improve this answer
feedback

Something about the runtime loaded class prevents the usual one ILog per class from working. I can get a valid ILog instance, but unlike all the other instances it appears not to be configured (all the Is**Enabled flags are set to false). Perhaps the "root" logger is not accessible to the classes loaded at runtime???

link|improve this answer
feedback

I have a stupid solution. You can set the XmlConfiguration to the main log4net config file.

[assembly: log4net.Config.XmlConfigurator(ConfigFile="",Watch = true)]

Is not really beauty .. but runs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown