Logger在新创建的AppDomain中不起作用

时间:2014-01-02 15:26:46

标签: c# .net log4net appdomain common.logging

在我的应用程序中,我使用Common.Logging库来抽象日志记录功能。在启动程序集中,它已配置(在app.config文件中)以对Log4Net库起作用。已经建立了一些Appender:ConsoleAppenderRollingFileAppenderTraceAppender。单AppDomain一切正常。但是我发现日志记录在新创建的AppDomain中不起作用。即:

Logger.Info( "Logging works here" ); // Logging works here

var appDomain = AppDomain.CreateDomain(
                              "AppDomain." + componentHost.FullName,
                               AppDomain.CurrentDomain.Evidence,
                               AppDomain.CurrentDomain.SetupInformation );

var proxy = (IComponentHost) appDomain.CreateInstanceAndUnwrap(
                               componentHost.Assembly.FullName,
                               componentHost.FullName,
                               false,
                               BindingFlags.Default,
                               null,
                               new object[] { },
                               null,
                               null );

proxy.Init(); // Logging does not work in Init() method stack

我正在尝试使用app.config配置和Common.Logging API(即LogManager.Reset()方法)找到解决方案,但它无法解决问题。

如何强制Common.Logging / Log4Net在新创建的AppDomain中正常工作?请求帮助。

2 个答案:

答案 0 :(得分:1)

从您显示的代码中,您似乎没有为您的应用领域提供配置文件。我已经这样做了几年,但如果我没记错的话,默认情况下新应用域的配置文件是空的。

以下是如何使用AppDomainSetup类的示例:

AppDomainSetup ads = new AppDomainSetup();

ads.SetConfigurationBytes( Encoding.UTF8.GetBytes(
@"<configuration>
  <system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SqlServerCe.3.5"></remove>
  </DbProviderFactories>
</configuration>" ) ); 

(感谢Tom Overton的代码示例。)

请参阅http://social.msdn.microsoft.com/Forums/vstudio/en-US/a23ff0ad-8a4c-4aaf-8281-dcc7e840f8a5/assigning-appconfig-to-appdomain?forum=clr对此问题的解释。

答案 1 :(得分:0)

我对log4net也有类似的问题。我使用XmlConfigurator.Configure()而没有使用Assembly.GetCallingAssembly()来获取配置文件的参数。我把它改为:

var configFile = new FileInfo(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
if (!configFile.Exists)
    throw new Exception($"Failed to find configuration file '{configFile.FullName}'");
XmlConfigurator.Configure(configFile);