1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-10 07:36:03 +00:00
Ryujinx/Ryujinx.Common/Logging/LogLevel.cs
mlgatto 95cc18a7b4
Added trace log level ()
* added trace log level

* use trace log level instead of debug ( )

* alignment 

* moved trace logs toggle at the bottom 

* bumped config file version 

* added migration step 

* setting moved to the dev section 

* performance warning displayed when trace is enabled 
2022-02-17 21:08:07 -03:00

15 lines
213 B
C#

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