aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Logging/LogLevel.cs
blob: b1c2d23bf60253f5d8ac261931180d334cb547eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Common.Logging
{
    public enum LogLevel
    {
        Debug,
        Stub,
        Info,
        Warning,
        Error,
        Guest,
        AccessLog,
        Notice
    }
}