for (int i = 0; i < 100; ++i)
{
Logger.Log(LogLevel.Info, DateTime.Now.ToString("ss.fff"));
Thread.Sleep(1);
}
int tickCount = Environment.TickCount;
if (tickCount == CurrentTimeGetter.lastTicks)
return CurrentTimeGetter.lastDateTime;
DateTime now = DateTime.Now;
CurrentTimeGetter.lastTicks = tickCount;
CurrentTimeGetter.lastDateTime = now;
return now;
No one is working on this at the moment. I would be great if you could implement that feature
Hi, thanks for the patch.
i haven't looked at the patch in detail yet, but it seems like very good quality.
Would it be possible to allow song the time provider from the configuration file to?
<nlog>
<time type='AccurateUTC' />
</nlog>
Looks very good. I'll try to test it soon.
Yeah the documentation generation is beyond me to, have not look into to it that much, after i took over the project from Jarek. But there is a first time for everything :-)
--
You received this message because you are subscribed to the Google Groups "NLog-Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nlog-users+...@googlegroups.com.
To post to this group, send email to nlog-...@googlegroups.com.
Visit this group at http://groups.google.com/group/nlog-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Good work. I'm in the final stage of releasing the next version, when this is done I'll publish a post on the NLog homepage with links to your posts.