Log4Net并非100%记录

本文关键字:记录 100% 并非 Log4Net | 更新日期: 2023-09-27 18:20:20

我在让log4net记录我告诉它的一切时遇到了一些问题。这似乎真的取决于我把log.Info()调用放在哪里;如果我把它放在正确的地方,它会起作用,其他时候则不会。

这是我的配置文件:

<?xml version="1.0"?>
    <configuration>
        <configSections>
            <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
        </configSections>
        <appSettings>
            <add key="log4net.Internal.Debug" value="true" />
            <add key="ClientSettingsProvider.ServiceUri" value="" />
        </appSettings>
        <log4net>
            <root>
                <level value="ALL" />
                <appender-ref ref="rollingFileAppender" />
            </root>
            <appender name="rollingFileAppender" type="log4net.Appender.RollingFileAppender">
                <file value="C:'binoptics'VICLogs'VICLog.txt" />
                <appendToFile value="true" />
                <rollingStyle value="Size" />
                <maxSizeRollBackups value="50" />
                <maximumFileSize value="50MB" />
                <staticLogFileName value="true" />
                 <layout type="log4net.Layout.PatternLayout">
                     <conversionPattern value="%date %-5level - %message - %exception - %newline" />
                 </layout>
             </appender>
         </log4net>
         <system.web>
             <membership defaultProvider="ClientAuthenticationMembershipProvider">
                 <providers>
                     <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
                 </providers>
             </membership>
             <roleManager enabled="true" defaultProvider="ClientRoleProvider">
                 <providers>
                     <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
                 </providers>
             </roleManager>
         </system.web>
         <startup>
             <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
         </startup>
</configuration>

这是调用日志的客户端类。Info()方法:

使用中:

using System.Reflection;
using log4net;

在我的字段声明中:

private static readonly ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

调用方法(这非常有效):

    MessageBox.Show(
        "Hello " + LoginManager.CurrentUserData[1].ToString() + "!'n'n" +
        "Welcome to the BinOptics Visual Inspection Console.",
        "Login Successful!", MessageBoxButton.OK, MessageBoxImage.Exclamation);
    WaferTrackerWindow wtw = new WaferTrackerWindow();
    wtw.Show();
    log.Info(
        LoginManager.CurrentUserData[1].ToString() +
        " has successfully logged in. ");
    return "Exit";

我以前的方式(这不起作用):

    log.Info(
        LoginManager.CurrentUserData[1].ToString() +
        " has successfully logged in. ");
    MessageBox.Show(
        "Hello " + LoginManager.CurrentUserData[1].ToString() + "!'n'n" +
        "Welcome to the BinOptics Visual Inspection Console.",
        "Login Successful!", MessageBoxButton.OK, MessageBoxImage.Exclamation);
    WaferTrackerWindow wtw = new WaferTrackerWindow();
    wtw.Show();
    return "Exit";

在第二个示例中,根本没有抛出异常,即日志。不过,Info()调用不起作用。我甚至在日志上放置了一个断点。Info()行;它在那个调用时就中断了,一切都执行得很好,但后来我检查了我的日志文件,那一行从来没有写过。

在这个特定的例子中,我很幸运,因为我可以灵活地放置日志。Info()调用;在同一项目中的其他类中,我没有那种灵活性,调用只能在一个特定的位置。

这是怎么回事?有什么我可以解决的吗?每次写入后是否需要刷新文件?任何帮助都将不胜感激!!

问候,

Kyle

Log4Net并非100%记录

我认为发生的事情是MessageBox.Show()阻塞了您的线程。如果你绝对需要一个弹出窗口,你应该尝试创建一个非模态对话框来代替MessageBox.Show()

在我个人看来,我不喜欢点击任何东西来继续使用程序,所以我会用NotifyIcon或类似的东西代替它,并在上面显示消息。