3

我正在使用 Nlog 将一些日志记录写入文本文件。部分 nlog.config:

 <target name="file" xsi:type="File" fileName="${basedir}/MBWRunner_log.txt"
             layout="${date} (${level}): ${message}
Exception: ${exception:format=Method, ToString}"/>

日志文件中的行如下所示:

0001-01-01 00:00:00(跟踪):MBWRunner 开始

如您所见,日期和时间均为 0。我测试了 {longdate} 和 {date:format=yyyyMMddHHmmss},结果相同。

该应用程序是一个控制台应用程序,从提升的命令行运行。

有什么线索吗?

[编辑] 我已经在组织内的 2 台机器上对此进行了测试,结果相同。请帮忙!

使用的代码:

  static Logger _logger = LogManager.GetCurrentClassLogger();

public static void Log(string message, LogLevel priority)
    {
      LogEventInfo eventinfo = new LogEventInfo(); ;
      eventinfo.Message = message;
      eventinfo.Level = priority;
      Log(eventinfo);
    }

static void Log(LogEventInfo logentry)
{     
  _logger.Log(logentry);
}
4

1 回答 1

5

更新:

@edosoft 我认为问题在于您使用了 LogEventInfo 的默认构造函数。如果您在此处查看 LogEventInfo 的来源

https://github.com/NLog/NLog/blob/master/src/NLog/LogEventInfo.cs

您将看到使用默认构造函数不会填充该.TimeStamp字段,因此该字段可能只是默认为 DateTime 的默认值,我假设它是DateTime.MinValue. 您应该使用其他构造函数之一或 Create 方法之一。由于您只设置 Message 和 Level 字段,我建议:

var logEvent = new LogEventInfo(priority, "", message); //Second param is logger name.

或者

var logEvent = LogEventInfo.Create(priority, "", message);

DateLayoutRenderer从(从这里)的 NLog 源中,我们可以看到作为日志流的一部分写入的日期值是这样计算的:

    protected override void Append(StringBuilder builder, LogEventInfo logEvent)
    {
        var ts = logEvent.TimeStamp;
        if (this.UniversalTime)
        {
            ts = ts.ToUniversalTime();
        }

        builder.Append(ts.ToString(this.Format, this.Culture));
    }

这里发生的DateLayoutRenderer是从对象中获取TimeStampLogEventInfo(NLog 每次使用Logger.Trace, Logger.Debug,Logger.Info等方法时都会创建其中一个。您也可以LogEventInfo自己创建对象并使用该Logger.Log方法记录它们)。

默认情况下,当一个LogEventInfo对象被创建时,它的TimeStamp字段是这样设置的(来自LogEventInfo here的源代码)(注意使用CurrentTimeGetter.Now):

    public LogEventInfo(LogLevel level, string loggerName, IFormatProvider formatProvider, [Localizable(false)] string message, object[] parameters, Exception exception)
    {
        this.TimeStamp = CurrentTimeGetter.Now;
        this.Level = level;
        this.LoggerName = loggerName;
        this.Message = message;
        this.Parameters = parameters;
        this.FormatProvider = formatProvider;
        this.Exception = exception;
        this.SequenceID = Interlocked.Increment(ref globalSequenceId);

        if (NeedToPreformatMessage(parameters))
        {
            this.CalcFormattedMessage();
        }
    }

TimeStamp字段是LogEventInfo使用属性在构造函数中设置的TimeSource.Current.Now,其实现可以在这里看到。

(更新 - 在某些时候,NLog 从使用更改CurrentTimeGetter为更通用的方法,TimeSource即拥有一个具有多种风格的对象(其中一种,CachedTimeSource,本质上与 相同CurrentTimeGetter))。

为了省去浏览链接的麻烦,这里是源代码CachedTimeSource

public abstract class CachedTimeSource : TimeSource
{
    private int lastTicks = -1;
    private DateTime lastTime = DateTime.MinValue;

    /// <summary>
    /// Gets raw uncached time from derived time source.
    /// </summary>
    protected abstract DateTime FreshTime { get; }

    /// <summary>
    /// Gets current time cached for one system tick (15.6 milliseconds).
    /// </summary>
    public override DateTime Time
    {
        get
        {
            int tickCount = Environment.TickCount;
            if (tickCount == lastTicks)
                return lastTime;
            else
            {
                DateTime time = FreshTime;
                lastTicks = tickCount;
                lastTime = time;
                return time;
            }
        }
    }
}

此类的目的是使用相对便宜的操作 ( Environment.Ticks) 来限制对相对昂贵的操作 ( DateTime.Now) 的访问。如果 Ticks 的值在每次调用(从一条记录的消息到下一条)中没有变化,那么这次DateTime.Now检索的值将与这次检索的 DateTime.Now 的值相同,所以只需使用最后一次检索到的值。

使用所有这些代码(并且日期/时间日志显然适用于大多数其他人),您的问题的一种可能解释是您正在使用该Logger.Log方法来记录您的消息并且您正在LogEventInfo自己构建对象。默认情况下,如果您只是新建一个LogEventInfo对象,该TimeStamp属性的自动设置应该可以正常工作。它仅取决于Environment.TicksDateTime.Now和重用最后一个DateTime.Now值的逻辑(如果适用)。

您是否有可能正在创建一个LogEventInfo对象,然后将其TimeStamp属性设置为DateTime.MinValue?我问是因为记录的日期是DateTime.MinValue.

我能想到的唯一其他解释是如果Environment.Ticks出于某种原因返回 -1。如果是这样,那么CurrentTimeGetter将始终返回 lastDateTime 私有成员变量的初始值。我无法想象Environment.Ticks会返回-1的场景。

于 2012-12-03T20:03:58.847 回答