Skip to content

Commit

Permalink
Merge pull request #9612 from JosJuice/android-log-to-file
Browse files Browse the repository at this point in the history
Android: Rename "Enable Logging" to "Write Logs to File"
  • Loading branch information
lioncash committed Mar 28, 2021
2 parents 39499c6 + e677f64 commit 3533810
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -668,8 +668,8 @@ private void addHackSettings(ArrayList<SettingsItem> sl)

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,
Expand Down
4 changes: 2 additions & 2 deletions Source/Android/app/src/main/res/values/strings.xml
Expand Up @@ -289,8 +289,8 @@

<!-- Log Configuration -->
<string name="log_submenu">Log</string>
<string name="enable_logging">Enable Logging</string>
<string name="enable_logging_description">Log messages from enabled log types to dolphin-emu/Logs/. Will decrease performance.</string>
<string name="log_to_file">Write Logs to File</string>
<string name="log_to_file_description">Log messages from enabled log types to the Logs folder. Will decrease performance.</string>
<string name="log_verbosity">Verbosity</string>
<string name="log_enable_all">Enable all Log Types</string>
<string name="log_enable_all_confirmation">Are you sure you want to enable all log types?</string>
Expand Down

0 comments on commit 3533810

Please sign in to comment.