I am using enterprize library 5.0 with c# for exception handling and for that I am using formatter.Now In my log file Timestamp is not giving the right time. Can I change the value of timestamp in formatter.

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

Timestamp: {timestamp(local)} will get the local system time

link|improve this answer
Thanks It works for me – user358226 Jun 4 '10 at 8:29
feedback

The timestamp entry uses UTC so that exceptions logged in different timezones can be correlated. The best idea is to convert the time to local if and when you read the trace log file and present the information to the user.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.