diff options
Diffstat (limited to 'Ryujinx.Common/Logging/LogLevel.cs')
-rw-r--r-- | Ryujinx.Common/Logging/LogLevel.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Common/Logging/LogLevel.cs b/Ryujinx.Common/Logging/LogLevel.cs new file mode 100644 index 00000000..ba3fa99f --- /dev/null +++ b/Ryujinx.Common/Logging/LogLevel.cs @@ -0,0 +1,11 @@ +namespace Ryujinx.Common.Logging +{ + public enum LogLevel + { + Debug, + Stub, + Info, + Warning, + Error + } +} |