aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Logging/LogEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Logging/LogEventArgs.cs')
-rw-r--r--Ryujinx.Common/Logging/LogEventArgs.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Ryujinx.Common/Logging/LogEventArgs.cs b/Ryujinx.Common/Logging/LogEventArgs.cs
index af334632..511c8e6e 100644
--- a/Ryujinx.Common/Logging/LogEventArgs.cs
+++ b/Ryujinx.Common/Logging/LogEventArgs.cs
@@ -4,12 +4,12 @@ namespace Ryujinx.Common.Logging
{
public class LogEventArgs : EventArgs
{
- public LogLevel Level { get; private set; }
- public TimeSpan Time { get; private set; }
- public string ThreadName { get; private set; }
+ public readonly LogLevel Level;
+ public readonly TimeSpan Time;
+ public readonly string ThreadName;
- public string Message { get; private set; }
- public object Data { get; private set; }
+ public readonly string Message;
+ public readonly object Data;
public LogEventArgs(LogLevel level, TimeSpan time, string threadName, string message)
{