mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-09 10:19:57 +00:00
20 lines
348 B
C#
20 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
|
|
}
|
|
}
|