c# - Timestamps for log events are 10 minutes off -


i started using etw slab , noticed time stamps events bit off. there reason time stamps outputted eventsource.writeevent 10 minutes earlier when event occurred? not big deal, curious why might happening.

example code:

[event(100, level = eventlevel.informational)] public void info(string message) {        if (this.isenabled())        {            this.writeevent(100, message);        } } 

the output might this:

eventid : 100, level : informational, message : method documentodsrepository.getdocuments entered., payload : [methodname : documentodsrepository.getdocuments] , eventname : methodenteredinfo, timestamp : 2014-06-25t20:38:18.8503447z 

however, timestamp should 2014-06-25t20:48:18.8503447z.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -