diff options
| author | JosJuice <josjuice@gmail.com> | 2021-03-28 13:57:52 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2021-03-28 13:57:52 +0200 |
| commit | e677f641a0c8023f19cc1684c86702a309097169 (patch) | |
| tree | a93b56ab8ca689e5a72a9dba998b3d016b06c80a /Source/Android/app/src/main/java | |
| parent | 8d2b0fff8a066281365072f827321e47bfed8c72 (diff) | |
Android: Rename "Enable Logging" to "Write Logs to File"
This option does in fact not enable and disable logging as a whole.
You can get logs through logcat regardless of this setting.
Also taking the opportunity to remove the reference to
the "dolphin-emu" folder name since we will no longer be
using that folder once scoped storage is applied to Dolphin.
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/ui/SettingsFragmentPresenter.java | 4 |
1 files changed, 2 insertions, 2 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 917c975ac4..3ff8e963c3 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 @@ -668,8 +668,8 @@ public final class SettingsFragmentPresenter private void addLogConfigurationSettings(ArrayList<SettingsItem> sl) { - sl.add(new CheckBoxSetting(BooleanSetting.LOGGER_WRITE_TO_FILE, R.string.enable_logging, - R.string.enable_logging_description)); + sl.add(new CheckBoxSetting(BooleanSetting.LOGGER_WRITE_TO_FILE, R.string.log_to_file, + R.string.log_to_file_description)); sl.add(new SingleChoiceSetting(IntSetting.LOGGER_VERBOSITY, R.string.log_verbosity, 0, getLogVerbosityEntries(), getLogVerbosityValues())); sl.add(new RunRunnable(R.string.log_enable_all, 0, R.string.log_enable_all_confirmation, 0, |
