18

我正在使用 log4net 进行日志记录。我的日志记录配置存储在一个单独的文件中。

Web.Config:ConfigSections

<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />

在 AssemblyInfo.cs 中指定我的配置文件

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

当我初始化我的 LogManager 时,我得到了这个错误

"System.TypeLoadException"
message: Could not load type 'log4net.Config.Log4NetConfigurationSectionHlandler' from assembly 'Log4net'.

是的,上面写着“Log4NetConfigurationSectionHlandler”,这不是错字

后来,这个错误

An error occurred creating the configuration section handler for log4net: Could not load type 'log4net.Config.Log4NetConfigurationSectionHlandler' from assembly 'Log4net'. 

编辑:尝试了 Mauricio Scheffer 的建议

拿到

log4net:ERROR XmlConfigurator: Failed to find configuration section 'log4net' in the application's .config file. Check your .config file for the <log4net> and <configSections> elements. The configuration section should look like: <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
4

1 回答 1

26

如果您将配置放在单独的 log4net.config 文件中,则不需要 sectionHandler。去掉它。

您也可能在代码中的某处调用XmlConfigurator.Configure() 。也删除它。

也看到这个问题

于 2009-12-18T19:05:56.763 回答