forked from Mirror/Ryujinx
19 lines
348 B
C#
19 lines
348 B
C#
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
|
|
}
|
|
}
|