7

我正在尝试实现 Quartz.Net。只要没有配置日志记录,一切正常(调试输出显示“未找到配置部分 - 抑制日志记录输出”)。

启用日志记录后,我将收到以下错误:Failed getting configuration for Common.Logging from configuration section 'common/logging'

内部异常:为 common/logging 创建配置节处理程序时出错:无法创建类型“Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter,Common.Logging.Log4net”

我使用了几种资源验证我的配置,但据我所知,它应该是正确的。

我的 app.config:

  <configSections>
    <section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <sectionGroup name="common">
      <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
    </sectionGroup>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
  </configSections>
  <common>
    <logging>
      <factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4net">
        <arg key="configType" value="INLINE" />
      </factoryAdapter>
    </logging>
  </common>  
  <log4net>
    <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
      <layout type="log4net.Layout.PatternLayout">
        <param name="ConversionPattern" value="%-6p%d{yyyy-MM-dd hh:mm:ss} – %m%n" />
      </layout>
    </appender>
    <root>
      <level value="DEBUG" />
      <appender-ref ref="ConsoleAppender" />
    </root>
  </log4net>
  <quartz>
    <add key="quartz.scheduler.instanceName" value="Driver.Service.Scheduler" />
    <add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" />
    <add key="quartz.threadPool.threadCount" value="10" />
    <add key="quartz.threadPool.threadPriority" value="2" />
    <add key="quartz.jobStore.misfireThreshold" value="60000" />
    <add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz" />
  </quartz>

我引用了以下程序集:
quartz.dll,版本 2.01.100
common.logging.dll,版本 2.0.0.0
common.logging.log4net.dll,版本 2.0.0.0
log4net.dll,版本 1.2.10.0

我找不到给出错误的原因。欢迎所有帮助,显然我忘记了一些事情......

4

3 回答 3

12

当我们升级到新版本的 Common.Logging.Log4Net 时,我们遇到了类似的情况,其中 DLL 名称从Common.Logging.Log4Net更改为Common.Logging.Log4Net1211

因此,我们修改了配置文件以更改 DLL 名称:

<factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4Net1211">

无论如何,该错误肯定表明缺少 DLL。

于 2014-08-22T18:14:52.257 回答
5

你能检查一下 Common.Logging.Log4net.dll 是否被复制到你的 bin 输出文件夹中。

另外你确定你的内部异常没有内部异常(或者可能有几个级别的内部异常)?

于 2012-11-08T20:08:08.170 回答
0

我不确定,但在您的 common/logging 配置部分,一次是写 log4net,一次是 log4Net(大写字母):

  <factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4net">
于 2012-11-07T20:45:29.263 回答