Skip to content

Commit

Permalink
Another utc
Browse files Browse the repository at this point in the history
  • Loading branch information
cwetanow committed Mar 23, 2017
1 parent 5ed9bda commit 62f5c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Logs.Providers/DateTimeProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public DateTime GetTimeFromCurrentTime(int hours, int minutes, int seconds)
{
var timeSpan = new TimeSpan(hours, minutes, seconds);

return DateTime.Now.Add(timeSpan);
return DateTime.UtcNow.Add(timeSpan);
}
}
}

0 comments on commit 62f5c75

Please sign in to comment.