gpt4 book ai didi

.net - log4net 初始化

转载 作者:行者123 更新时间:2023-12-01 22:38:32 26 4
gpt4 key购买 nike

我一直在努力寻找重复项,但无论看起来多么基本,都必须问以下问题,以便一劳永逸地弄清楚!

在 64 位 W7 上的 VS28KSP1 上使用 log4net 版本 1.2.10.0 的全新控制台应用程序中,我有以下代码:-

using log4net;
using log4net.Config;

namespace ConsoleApplication1
{
class Program
{
static readonly ILog _log = LogManager.GetLogger(typeof(Program));
static void Main(string[] args)
{
_log.Info("Ran");
}
}
}

在我的 app.config , 我有:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<log4net>
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="Program.log" />
<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
<appendToFile value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="1MB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="[%username] %date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>
</appender>

<root>
<level value="DEBUG" />
<appender-ref ref="RollingFileAppender" />
</root>
</log4net>

</configuration>

这不会写任何东西,除非我添加一个属性:
[ assembly:XmlConfigurator ]

或者在 Main() 中显式初始化它:
_log.Info("This will not go to the log");
XmlConfigurator.Configure();
_log.Info("Ran");

这提出了以下问题:
  • 我几乎可以肯定我已经看到它在某些版本的 log4net 上工作,而无需添加程序集属性或调用 Main。有人可以向我保证我不会想象吗?
  • 有人可以指出我在文档中的哪个位置明确指出配置部分和初始化 Hook 都是必需的 - 希望解释一下何时更改,如果确实如此?

  • 我可以很容易地想象为什么这可能是政策 - 明确初始化步骤以避免意外等,只是我似乎记得并非总是如此......(通常我将配置放在单独的文件中,这通常会将配置部分排除在外)

    最佳答案

    根据the configuration page in the manual :

    The log4net configuration can be configured using assembly-level attributes rather than specified programmatically.

    XmlConfiguratorAttribute: The log4net.Config.XmlConfiguratorAttribute Allows the XmlConfigurator to be configured using the following properties:

    • ConfigFile ...
    • ConfigFileExtension ...

    If neither of the ConfigFile or ConfigFileExtension properties are specified, the application configuration file (e.g. TestApp.exe.config) will be used as the log4net configuration file.

    Example usage:

    // Configure log4net using the .config file
    [assembly: log4net.Config.XmlConfigurator(Watch=true)]
    // This will cause log4net to look for a configuration file
    // called TestApp.exe.config in the application base
    // directory (i.e. the directory containing TestApp.exe)
    // The config file will be watched for changes.

    我同意这有点模棱两可,但我将示例用法的存在解释为 log4net 不会使用没有上述属性的 .config 文件;并且他们指出您必须使用这两个属性之一,但不要说完全省略该属性的事实,这向我表明该属性(或编程调用)需要在你想要的方式。

    关于.net - log4net 初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1261158/

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