Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.Common/Logging/LogLevel.cs
Normal file
19
src/Ryujinx.Common/Logging/LogLevel.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user