2

我在使用 Common.Logging.Log4net 的应用程序中有以下 app.config (省略了几个部分以简化示例):

<configuration>
  <configSections>
    <sectionGroup name="common">
      <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
    </sectionGroup>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
      ...
      <common>
        <logging>
          <factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4net1211">
            <arg key="configType" value="INLINE" />
          </factoryAdapter>
        </logging>
      </common>
      <log4net>
        <appender ...
        <root>
          <level value="INFO" />
        </root>
      ...
      </log4net>

这个想法是让 Common Logging 运行时自动配置 log4net(没有程序集属性)并使用唯一文件来进行此配置,即应用程序的app.config

尽管使用此 INLINE configType 我无法在应用程序运行期间动态更改 app.config 以更新日志记录配置,因为此行为是通过 FILE-WATCH configType 实现的。

所以我想:

  1. 只有一个配置文件(我的应用程序的 app.Config)
  2. 不必为了配置 log4net 将程序集属性包含到 AssemblyInfo 中
  3. 在应用程序运行时更改 app.Config log4net 部分(例如根日志记录级别值),并让应用程序在我更改 app.config 时自动更新其日志记录配置。

知道如何使用 Common Logging + Log4net 来满足这些要求吗?

4

0 回答 0