LogLevel.cs
1 using Ryujinx.Common.Utilities; 2 using System.Text.Json.Serialization; 3 4 namespace Ryujinx.Common.Logging 5 { 6 [JsonConverter(typeof(TypedStringEnumConverter<LogLevel>))] 7 public enum LogLevel 8 { 9 Debug, 10 Stub, 11 Info, 12 Warning, 13 Error, 14 Guest, 15 AccessLog, 16 Notice, 17 Trace, 18 } 19 }