gpt4 book ai didi

c# - Log4Net 错误 : "Failed to find configuration section log4net"

转载 作者:太空宇宙 更新时间:2023-11-03 15:48:31 24 4
gpt4 key购买 nike

我正在开始使用 log4net。我正在开发一个小型控制台项目,我必须在其中实现这个框架。

一开始我创建了一个小的控制台项目来查看它是如何在没有任何其他代码的情况下工作的。我设法让它正常工作。

现在我尝试迁移应用程序中的所有代码,但在执行控制台应用程序的 .exe 时出现此错误:

    "ERROR 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"/>

代码:

public class Program
{
private static readonly log4net.ILog log = log4net.LogManager.GetLogger
(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
public static void Main(string[] args)
{
log4net.Config.XmlConfigurator.Configure();
ILog log = log4net.LogManager.GetLogger(typeof(Program));
...

app.config 还不存在,所以它的内容和我做的测试项目是一样的:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,Log4net" />
</configSections>
<log4net>
<appender name="FileAppender" type="log4net.Appender.FileAppender,log4net">
<file value="D:\WEB\SAI\log\nas\log.txt" />
<appendToFile value="true" />
<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %level %logger - %message%newline" />
</layout>
<filter type="log4net.Filter.LevelRangeFilter">
<levelMin value="INFO" />
<levelMax value="FATAL" />
</filter>
</appender>

<root>
<level value="INFO"/>
<appender-ref ref="FileAppender"/>
</root>
</log4net>
</configuration>

在网上搜索了一番后,我补充道:

[assembly: log4net.Config.XmlConfigurator()]

按照建议添加到我的 AssemblyInfo.cs,但结果仍然相同...预先感谢您的帮助

最佳答案

添加[程序集:log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)]在 AsseblyInfo.cs 中

关于c# - Log4Net 错误 : "Failed to find configuration section log4net",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26975907/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com