带有 Common.Logging 和 Common.Logging.Simple.CommonLoggingTraceListener 的 StackOverflowException

发布于 2024-11-27 05:53:43 字数 1009 浏览 1 评论 0原文

我正在尝试将所有日志消息从 System.Diagnostics.Trace 重定向到 Common.Logging 如 Common.Logging 网站上所述

不幸的是,当我运行我的应用程序时,我收到了 StackOverflowException ,但我不确定为什么。如果我删除 部分,它会正常运行。

我使用一个简单的控制台应用程序复制了这个问题,该应用程序对 Trace.WriteLine("hello"); 进行一次调用,

这是我完整的 App.config 文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.diagnostics>
    <trace>
      <listeners>
        <clear />
        <add name="commonLoggingListener"
             type="Common.Logging.Simple.CommonLoggingTraceListener, Common.Logging"
             initializeData="LogLevel=Trace" />
      </listeners>
    </trace>
  </system.diagnostics>
</configuration>

任何人都可以对导致 StackOverflowException 的原因提出任何建议吗?

I'm trying to redirect all log messages from System.Diagnostics.Trace to Common.Logging as documented on the Common.Logging website.

Unfortunately when I run my application I get a StackOverflowException and I'm not sure why. If I delete the <system.diagnostics> section it runs fine.

I've replicated this problem using a simple Console application which makes a single call to Trace.WriteLine("hello");

Here's my complete App.config file:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.diagnostics>
    <trace>
      <listeners>
        <clear />
        <add name="commonLoggingListener"
             type="Common.Logging.Simple.CommonLoggingTraceListener, Common.Logging"
             initializeData="LogLevel=Trace" />
      </listeners>
    </trace>
  </system.diagnostics>
</configuration>

Can anyone make any suggestions as to what is causing the StackOverflowException?

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

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

发布评论

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

评论(1

贪恋 2024-12-04 05:53:43

我现在已经不再讨论这个问题了,但我认为 CodeMonkeyKing 的答案可能是准确的:

我相信你现在已经明白了这一点,但我没有看到任何
答案。 StackOverflowException 的最常见原因之一是
如果您正在使用跟踪侦听器进行公共日志记录。它
如果您将所有 .Diag'ics.Trace 重定向到
Common.Logging 可能会导致溢出,具体取决于
您配置了哪个日志工厂适配器。

I've moved on from this issue now, but I think the answer from CodeMonkeyKing is probably accurate:

I'm sure that you've figured this out by now but I don't see any
answers. One of the most common causes for a StackOverflowException is
if you are making use of the Trace listener for Common Logging. It
would make sense that if you redirect all of .Diag'ics.Trace to
Common.Logging that you could end up with a overflow depending on
which logging factory adapter you've configured.

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