aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Services/Lm/LmLogLevel.cs
blob: d051a595a90601a05d52b717a7a243c6be0b2cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.HLE.OsHle.Services.Lm
{
    enum LmLogLevel
    {
        Trace,
        Info,
        Warning,
        Error,
        Critical
    }
}