将 log4net 与 Unity IoC 结合使用

发布于 2024-08-03 13:36:53 字数 226 浏览 5 评论 0原文

我正在尝试使用 Unity 配置 log4net,但我认为我不完全理解需要做什么。

特别是我不知道如何记录 %thread 以便记录类的名称。

我创建了一个 MyLog4Net : ILogger 类,但我不明白如何将此类传递给调用类,以及它与配置部分中的记录器名称有何关系 ( < logger name="File" > )。

如果有人可以向我解释这一点,我将不胜感激。谢谢

I'm trying to configure log4net with Unity, but I don't think I fullu understand what needs to be done.

In particular I can't figure how to log the %thread such that it logs the name of the class.

I created a MyLog4Net : ILogger class, but I don't get how I pass this class the calling class and how this relates to the logger name in the config section ( < logger name="File" > ).

If someone could explain this to me I'd be grateful. Thanks

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

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

发布评论

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

评论(1

So尛奶瓶 2024-08-10 13:36:53

用于记录记录器名称的模式(我假设您想使用该类作为记录器名称)不是 %thread 而是 %logger。您可以在此处找到更多示例。

这个问题讨论了如何使用 Ninject 将请求注入的类型传递给记录器的相同问题。但不确定如何使用 Unity 来做到这一点。

The pattern for logging the name of the logger (I assume you want to use the class as logger name) is not %thread but %logger. You can find more samples here.

This question discusses the same problem of how to pass the type requesting injection to the logger using Ninject. Not sure how you would do this with Unity though.

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