aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Logging/LogEventArgs.cs
blob: 7a479b71c7bdd6a06bb897771c0fb1fc574550de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

namespace Ryujinx.Common.Logging
{
    public class LogEventArgs : EventArgs
    {
        public LogLevel Level { get; private set; }
        public TimeSpan Time  { get; private set; }

        public string Message { get; private set; }

        public LogEventArgs(LogLevel Level, TimeSpan Time, string Message)
        {
            this.Level   = Level;
            this.Time    = Time;
            this.Message = Message;
        }
    }
}