mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Convert LOG_TYPE and LOG_LEVELS to enum class
This commit is contained in:
@ -1336,7 +1336,7 @@ public final class SettingsFragmentPresenter
|
||||
|
||||
private static int getLogVerbosityEntries()
|
||||
{
|
||||
// Value obtained from LOG_LEVELS in Common/Logging/Log.h
|
||||
// Value obtained from LogLevel in Common/Logging/Log.h
|
||||
if (NativeLibrary.GetMaxLogLevel() == 5)
|
||||
{
|
||||
return R.array.logVerbosityEntriesMaxLevelDebug;
|
||||
@ -1349,7 +1349,7 @@ public final class SettingsFragmentPresenter
|
||||
|
||||
private static int getLogVerbosityValues()
|
||||
{
|
||||
// Value obtained from LOG_LEVELS in Common/Logging/Log.h
|
||||
// Value obtained from LogLevel in Common/Logging/Log.h
|
||||
if (NativeLibrary.GetMaxLogLevel() == 5)
|
||||
{
|
||||
return R.array.logVerbosityValuesMaxLevelDebug;
|
||||
|
@ -145,7 +145,7 @@
|
||||
<item>0</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Log Verbosity selection based on LOG_LEVELS in Common/Logging/Log.h -->
|
||||
<!-- Log Verbosity selection based on LogLevel in Common/Logging/Log.h -->
|
||||
<string-array name="logVerbosityEntriesMaxLevelInfo" translatable="false">
|
||||
<item>Notice</item>
|
||||
<item>Error</item>
|
||||
|
Reference in New Issue
Block a user