如何从 log4net 配置文件控制 WCF 日志记录?
我们使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议实施 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.
最简单的方法是在 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.