fix: Using UTC for tracking durations

This commit is contained in:
Chris Cameron
2020-03-11 13:02:34 -04:00
parent ed2cf84a7e
commit e99a7f313f
4 changed files with 14 additions and 13 deletions

View File

@@ -43,7 +43,7 @@ namespace ICD.Common.Utils.Services.Logging
{
m_Severity = severity;
m_Message = message;
m_Timestamp = IcdEnvironment.GetLocalTime().ToUniversalTime();
m_Timestamp = IcdEnvironment.GetUtcTime();
}
#endregion