Log4Net 与 WCF 作为服务运行

发布于 2024-09-11 03:50:33 字数 168 浏览 4 评论 0原文

我正在将 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 技术交流群。

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

发布评论

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

评论(1

Bonjour°[大白 2024-09-18 03:50:33

当我编写自己的日志系统时,我遇到了这样的设计问题。 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).

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