LogLevel.cs 348 B

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