如何从 log4net 配置文件控制 WCF 日志记录?

发布于 2024-08-14 15:57:44 字数 138 浏览 5 评论 0原文

我们使用 log4net 进行所有日志记录,我们的支持人员等知道如何编辑 log4net 配置文件。我们现在在我们的应用程序中使用 WCF。

因此,如何才能从 log4net 配置文件控制 WCF 内置日志记录,以便有一种方法来控制所有日志记录。

We do all our logging with log4net, our support staff etc know how to edit the log4net config files. We are now making use of WCF in our apps.

Therefore how can I enable the WCF built in logging to be controlled from the log4net config file, so that there is a single way to control all logging.

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

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

发布评论

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

评论(2

沧桑㈠ 2024-08-21 15:57:44

我建议实施 IParameterInspector 和/或IDispatchMessageInspector,并在该实现中使用 log4net 类。在这种情况下,您将坚持使用 log4net,并且在您的服务上启用日志记录并不困难(通过属性)。

I suggest to implement IParameterInspector and/or IDispatchMessageInspector, and use log4net classes inside that implementations. In this case you'll stick to log4net and it it's not hard (via attributes) to enable logging on your services.

╰つ倒转 2024-08-21 15:57:44

最简单的方法是在 app.config 中设置 WCF 的默认配置,您可以在应用程序启动时使用 System.Configuration 类从 log4net 获取的值覆盖该配置。

the naive approach will be to have a default configuration for WCF in app.config which you can override from code on application startup with values taken from log4net using System.Configuration classes.

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