2018-04-24 18:57:39 +00:00
|
|
|
using System;
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
namespace Ryujinx.Common.Logging
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
|
|
|
public class LogEventArgs : EventArgs
|
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
public readonly LogLevel Level;
|
|
|
|
public readonly TimeSpan Time;
|
|
|
|
public readonly string ThreadName;
|
2018-04-24 18:57:39 +00:00
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
public readonly string Message;
|
|
|
|
public readonly object Data;
|
2018-04-24 18:57:39 +00:00
|
|
|
|
2020-01-13 00:21:54 +00:00
|
|
|
public LogEventArgs(LogLevel level, TimeSpan time, string threadName, string message)
|
2018-04-24 18:57:39 +00:00
|
|
|
{
|
2020-01-13 00:21:54 +00:00
|
|
|
Level = level;
|
|
|
|
Time = time;
|
|
|
|
ThreadName = threadName;
|
|
|
|
Message = message;
|
2019-01-11 00:11:46 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 00:21:54 +00:00
|
|
|
public LogEventArgs(LogLevel level, TimeSpan time, string threadName, string message, object data)
|
2019-01-11 00:11:46 +00:00
|
|
|
{
|
2020-01-13 00:21:54 +00:00
|
|
|
Level = level;
|
|
|
|
Time = time;
|
|
|
|
ThreadName = threadName;
|
|
|
|
Message = message;
|
|
|
|
Data = data;
|
2018-04-24 18:57:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|