记录方法或类名总是写Common.Logging方法

发布于 2024-10-12 10:35:18 字数 582 浏览 4 评论 0原文

我将 log4net.NET Common.Logging 结合使用。我配置了一个消息模式来包含方法和类名称,如下所示:

<layout type="log4net.Layout.PatternLayout">
  <conversionPattern value="%-5level [%M %C] - %message%newline" />
</layout>

问题是我总是得到 Common.Logging 方法和类的名称:

FATAL [Fatal Common.Logging.Factory.AbstractLogger] - log message
INFO  [Info Common.Logging.Factory.AbstractLogger] - log message
DEBUG [Debug Common.Logging.Factory.AbstractLogger] - log message

它是最无用的。有没有办法打印我的方法名称

I'm using log4net with .NET Common.Logging. I configured a message pattern to include method and class name like so:

<layout type="log4net.Layout.PatternLayout">
  <conversionPattern value="%-5level [%M %C] - %message%newline" />
</layout>

The problem is I always get the name of the Common.Logging method and class:

FATAL [Fatal Common.Logging.Factory.AbstractLogger] - log message
INFO  [Info Common.Logging.Factory.AbstractLogger] - log message
DEBUG [Debug Common.Logging.Factory.AbstractLogger] - log message

It is most unuseful. Is there a way of printing my method name?

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

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

发布评论

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

评论(2

冰雪之触 2024-10-19 10:35:18

我认为你需要修改 Common.Logging。在文件 Log4NetLogger.cs 中,将以下行替换

private readonly static Type declaringType = typeof(Log4NetLogger);

private readonly static Type declaringType = typeof(AbstractLogger);

This 应该可以解决问题。 这里是一些解释为什么这应该有效。

I think you need to modify Common.Logging. In the file Log4NetLogger.cs replace the following line

private readonly static Type declaringType = typeof(Log4NetLogger);

with

private readonly static Type declaringType = typeof(AbstractLogger);

This should do the trick. Here is some explanation why this should work.

完美的未来在梦里 2024-10-19 10:35:18

此格式适用于我的配置

<layout type="log4net.Layout.PatternLayout">
  <conversionPattern value="%-5level [%logger] - %message%newline" />
</layout>

我的记录器被定义为

private static readonly Common.Logging.ILog logger = 
              Common.Logging.LogManager.GetCurrentClassLogger();

我使用这些未修改的 dll

  • Common.Logging.dll 版本 2.0.0.0
  • Common.Logging.Log4Net.dll 版本 2.0.0.0
  • log4net.dll 版本 1.2.10

更新:
在日志消息中,我将方法名称作为文本添加到日志记录调用中,因此分析调用堆栈以获取方法名称没有性能开销。

This format works with my config

<layout type="log4net.Layout.PatternLayout">
  <conversionPattern value="%-5level [%logger] - %message%newline" />
</layout>

My logger is defined as

private static readonly Common.Logging.ILog logger = 
              Common.Logging.LogManager.GetCurrentClassLogger();

I use these unmodified dlls

  • Common.Logging.dll ver 2.0.0.0
  • Common.Logging.Log4Net.dll ver 2.0.0.0
  • log4net.dll ver 1.2.10

Update:
In the logging messages i add the methodname into the logging call as text so i have no performance overhead with analysing the call stack to get the methodname.

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