can I set the time zone? #649
Unanswered
seniordoctor
asked this question in
Q&A
Replies: 1 comment
-
Yes. You have the option to implement the For example: public class LocalSystemClock : ISystemClock
{
public DateTime UtcNow => DateTime.Now; // Use the server local date, instead of the UTC
} And to set-up: Audit.Core.Configuration.SystemClock = new LocalSystemClock(); check this issue #227 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I need to change time zone, all our systems are running according to gmt (utc) +3 and Audit logs are 3 hours behind and need to be corrected, can we do this?
thanks all.
Beta Was this translation helpful? Give feedback.
All reactions