Log4Net 与 WCF 作为服务运行
我正在将 WCF 服务作为 Windows 服务运行。 我在让 log4net 执行任何实际日志记录时遇到问题,
我应该在 app.config 中放置 log4net 的配置代码。
服务主机 app.config 服务 app.config 或服务调用的底层方法?
-b
I am running a WCF Service as Windows Service.
I am having trouble getting log4net to do any actual logging
In what app.config should I place my configuration code for log4net.
The Service Host app.config the Service app.config or the underlying methods that the Service Calls?
-b
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我编写自己的日志系统时,我遇到了这样的设计问题。 dll 程序集的 app.config 将不会加载。您的应用程序/服务/等的可执行文件。是加载并忽略 dll 配置的内容。您必须实现自己的读/写/加载/等配置代码,或者只是将所有配置值设置到服务的 app.config 中(如果可能的话更好的主意)。
I've run into design issues like this when I was writing my own logging system. An app.config for a dll assembly won't load. The executable for your app/service/etc. is what loads and ignores the dll config. You will have to either implement your own read/write/load/etc config code or just set all config values into the service's app.config (much better idea if possible).