1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-15 11:58:16 -06:00
Alex Barney 350a3667f7 Implement OutputAccessLogToSdCard and expose an FS access log option ()
* 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
}
}