Update Logger.cs

This commit is contained in:
LDj3SNuD 2019-09-19 02:04:31 +02:00 committed by GitHub
parent 0e93a51030
commit 81e8be9c1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,11 @@ namespace Ryujinx.Common.Logging
m_Time = Stopwatch.StartNew();
}
public static void RestartTime()
{
m_Time.Restart();
}
public static void AddTarget(ILogTarget target)
{
m_LogTargets.Add(target);
@ -134,4 +139,4 @@ namespace Ryujinx.Common.Logging
return $"{Class} {Caller}: {Message}";
}
}
}
}