using System.Text.Json.Serialization; namespace Ryujinx.Common.Logging { [JsonConverter(typeof(JsonStringEnumConverter))] public enum LogLevel { Debug, Stub, Info, Warning, Error, Guest, AccessLog, Notice, Trace, } }