Ryujinx/Ryujinx.Common/Logging/LogLevel.cs
Alex Barney 350a3667f7 Implement OutputAccessLogToSdCard and expose an FS access log option (#700)
* Add OutputAccessLogToSdCard

* Add config options for the FS access log
2019-06-16 03:31:18 +02:00

14 lines
182 B
C#

namespace Ryujinx.Common.Logging
{
public enum LogLevel
{
Debug,
Stub,
Info,
Warning,
Error,
Guest,
AccessLog
}
}