Log4net 在发布模式下不记录

发布于 2024-09-06 12:45:45 字数 461 浏览 3 评论 0原文

在调试模式下,Log4net 正在正确记录日志。在发布模式下它也可以正确记录。但问题是,在发布模式下,如果我从特定类之一(只有一个)登录,它不会记录(该类在调试模式下登录)。即使在发布模式下,其他类也可以使用相同的记录器正确记录日志。

这是配置,

        <root>
            <level value="INFO" />
        </root>
        <logger name="Japt">
            <level value="DEBUG" />
            <appender-ref ref="JaptAuditLogDbAppender" />
        </logger>

我在调试和发布模式下使用相同的配置文件。

任何帮助将不胜感激。

In debug mode Log4net is logging properly. In Release mode also it Logs properly. But the problem is that, in release mode if I log from one of specific class(only one), it doesn't log(that class logs in debug mode). Other classes are logging properly even in release mode using the same logger.

Here is the Config

        <root>
            <level value="INFO" />
        </root>
        <logger name="Japt">
            <level value="DEBUG" />
            <appender-ref ref="JaptAuditLogDbAppender" />
        </logger>

I am using the same config file for both debug and release mode.

Any help will be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落在眉间の轻吻 2024-09-13 12:45:45

如果所讨论的类小而简单,则优化器可以将其转换为内联代码。

如果是这种情况,那么我认为你可以添加一个属性来显示内联,例如

[MethodImpl(MethodImplOptions.NoInlining)]
void Japt()

If the class in question is small and simple, it could be converted into inline code by the optimizer.

If this is the case, then I think you can add an attribute to display the inlining, eg

[MethodImpl(MethodImplOptions.NoInlining)]
void Japt()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文