I'm logging exception using Microsoft Enterprise Library Logging Application Block. I'm using the database trace listener.
Timestamp of the log entry is in UTC time by default.
I know I can have the timestamp of local time in the 'FormattedMessage' column of the 'Log' table by setting the log formatter like this : Timestamp: {timestamp(local)}
How can I do the same thing with the 'Timestamp' column ?
Thank you.
                        
The easiest way to do what you want is to set the
Timestampproperty of theLogEntry.E.g.:
Other options to do what you want would be to create a Custom Trace Listener or to modify the
WriteLogstored procedure to use any value you wish. You could simply useGETDATE()or you could do some manipulation of the passed in UTC Timestamp:As a point of interest (since you wouldn't normally use this type of code), if you use the Write() method of the
FormattedDatabaseTraceListenerdirectly it uses the local DateTime. E.g.:But as a commenter wrote, I would recommend sticking with UTC.