mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-04-26 15:02:54 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
18 lines
316 B
C#
18 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,
|
|
}
|
|
}
|