Log 4 net 不记录同一网址

发布于 2024-12-11 17:33:15 字数 106 浏览 0 评论 0原文

我使用 log4net dll 为我的 WCF 服务创建了一个错误处理程序。添加到 tfs 后,我的日志记录不起作用,我还设置了配置,但日志记录没有发生,尽管在我的测试应用程序中它工作正常。请帮忙。

I have created an error handler for my WCF Service using the log4net dll.After adding to the tfs my logging is not working, I have also set the configuration but the logging is not happening although in my test application it is working fine. kindly help.

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

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

发布评论

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

评论(1

谜兔 2024-12-18 17:33:15

您可以通过将以下内容添加到配置文件来在 log4net 中启用调试 appSettings 部分:

<add key="log4net.Internal.Debug" value="true"/>

如文章中所述,将跟踪指向某个文件,例如:

<system.diagnostics>
  <trace autoflush="true">
    <listeners>
      <add 
        name="textWriterTraceListener" 
        type="System.Diagnostics.TextWriterTraceListener" 
        initializeData="C:\my-log4net-trace.txt" />
    </listeners>
  </trace>
</system.diagnostics>

请参阅 log4net 常见问题解答中的完整说明

You could enable debugging in log4net by adding the following to your configuration file in the appSettings section:

<add key="log4net.Internal.Debug" value="true"/>

As stated in the article, point the trace to some file like:

<system.diagnostics>
  <trace autoflush="true">
    <listeners>
      <add 
        name="textWriterTraceListener" 
        type="System.Diagnostics.TextWriterTraceListener" 
        initializeData="C:\my-log4net-trace.txt" />
    </listeners>
  </trace>
</system.diagnostics>

See the full description over in the log4net FAQ.

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