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