aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Logging/LogLevel.cs
blob: be5b4ff2bd900d65bd43cb5edf5d418e245ecc6f (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Core.Logging
{
    public enum LogLevel
    {
        Debug,
        Stub,
        Info,
        Warning,
        Error
    }
}