summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-10-24 21:33:57 +0200
committerGitHub <noreply@github.com>2021-10-24 21:33:57 +0200
commit85bbc0d017563def1aee962c9b00c304c3c6f7ae (patch)
tree673b56f319e6fc220f181684aea586e57963501f /Source/Android
parent23159da9e1e53cc9b5620d4f28bfff03bc2af82c (diff)
parent04d8cdfe88c00dfc1f6b449a728dad6d96d82d8e (diff)
Merge pull request #10182 from Pokechu22/log-enum-class
Convert LOG_TYPE and LOG_LEVELS to enum class
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.java4
-rw-r--r--Source/Android/app/src/main/res/values/arrays.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.java
index fe58749387..a5660d599d 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.java
@@ -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;
diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml
index c7960258fa..39a4d075b6 100644
--- a/Source/Android/app/src/main/res/values/arrays.xml
+++ b/Source/Android/app/src/main/res/values/arrays.xml
@@ -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>