mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-02-22 08:41:08 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
19 lines
316 B
C#
19 lines
316 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Logging
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<LogLevel>))]
|
|
public enum LogLevel
|
|
{
|
|
Debug,
|
|
Stub,
|
|
Info,
|
|
Warning,
|
|
Error,
|
|
Guest,
|
|
AccessLog,
|
|
Notice,
|
|
Trace,
|
|
}
|
|
}
|