记录方法或类名始终写入Common.Logging方法

时间:2011-01-13 14:14:45

标签: c# .net .net-4.0 log4net log4net-configuration

我在 .NET Common.Logging 中使用 log4net 。我配置了一个消息模式,包括方法和类名,如下所示:

<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

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

2 个答案:

答案 0 :(得分:3)

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

private readonly static Type declaringType = typeof(Log4NetLogger);

private readonly static Type declaringType = typeof(AbstractLogger);

这应该可以解决问题。 Here解释了为什么这应该有效。

答案 1 :(得分:1)

此格式适用于我的配置

<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 ver 2.0.0.0
  • Common.Logging.Log4Net.dll ver 2.0.0.0
  • log4net.dll ver 1.2.10

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