diff options
Diffstat (limited to 'src/Ryujinx.Common/Logging/LogEventArgs.cs')
-rw-r--r-- | src/Ryujinx.Common/Logging/LogEventArgs.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Ryujinx.Common/Logging/LogEventArgs.cs b/src/Ryujinx.Common/Logging/LogEventArgs.cs index a27af780..264f8f3a 100644 --- a/src/Ryujinx.Common/Logging/LogEventArgs.cs +++ b/src/Ryujinx.Common/Logging/LogEventArgs.cs @@ -6,18 +6,18 @@ namespace Ryujinx.Common.Logging { public readonly LogLevel Level; public readonly TimeSpan Time; - public readonly string ThreadName; + public readonly string ThreadName; public readonly string Message; public readonly object Data; public LogEventArgs(LogLevel level, TimeSpan time, string threadName, string message, object data = null) { - Level = level; - Time = time; + Level = level; + Time = time; ThreadName = threadName; - Message = message; - Data = data; + Message = message; + Data = data; } } -}
\ No newline at end of file +} |