diff options
Diffstat (limited to 'src/Ryujinx.Common/Logging/LogEventArgsJson.cs')
-rw-r--r-- | src/Ryujinx.Common/Logging/LogEventArgsJson.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Ryujinx.Common/Logging/LogEventArgsJson.cs b/src/Ryujinx.Common/Logging/LogEventArgsJson.cs index 5203b17a..9628a757 100644 --- a/src/Ryujinx.Common/Logging/LogEventArgsJson.cs +++ b/src/Ryujinx.Common/Logging/LogEventArgsJson.cs @@ -8,7 +8,7 @@ namespace Ryujinx.Common.Logging { public LogLevel Level { get; } public TimeSpan Time { get; } - public string ThreadName { get; } + public string ThreadName { get; } public string Message { get; } public string Data { get; } @@ -16,11 +16,11 @@ namespace Ryujinx.Common.Logging [JsonConstructor] public LogEventArgsJson(LogLevel level, TimeSpan time, string threadName, string message, string data = null) { - Level = level; - Time = time; + Level = level; + Time = time; ThreadName = threadName; - Message = message; - Data = data; + Message = message; + Data = data; } public static LogEventArgsJson FromLogEventArgs(LogEventArgs args) @@ -28,4 +28,4 @@ namespace Ryujinx.Common.Logging return new LogEventArgsJson(args.Level, args.Time, args.ThreadName, args.Message, DynamicObjectFormatter.Format(args.Data)); } } -}
\ No newline at end of file +} |