mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Revert changing the default value for debug logging
This commit is contained in:
parent
f1e433e6df
commit
502771dd0e
@ -579,8 +579,8 @@ public class K9 extends Application {
|
||||
|
||||
public static void loadPrefs(Preferences prefs) {
|
||||
SharedPreferences sprefs = prefs.getPreferences();
|
||||
DEBUG = sprefs.getBoolean("enableDebugLogging", true);
|
||||
DEBUG_SENSITIVE = sprefs.getBoolean("enableSensitiveLogging", true);
|
||||
DEBUG = sprefs.getBoolean("enableDebugLogging", false);
|
||||
DEBUG_SENSITIVE = sprefs.getBoolean("enableSensitiveLogging", false);
|
||||
mAnimations = sprefs.getBoolean("animations", true);
|
||||
mGesturesEnabled = sprefs.getBoolean("gesturesEnabled", false);
|
||||
mUseVolumeKeysForNavigation = sprefs.getBoolean("useVolumeKeysForNavigation", false);
|
||||
|
@ -64,10 +64,10 @@ public class GlobalSettings {
|
||||
new V(1, new DateFormatSetting(DateFormatter.DEFAULT_FORMAT))
|
||||
));
|
||||
s.put("enableDebugLogging", Settings.versions(
|
||||
new V(1, new BooleanSetting(true))
|
||||
new V(1, new BooleanSetting(false))
|
||||
));
|
||||
s.put("enableSensitiveLogging", Settings.versions(
|
||||
new V(1, new BooleanSetting(true))
|
||||
new V(1, new BooleanSetting(false))
|
||||
));
|
||||
s.put("fontSizeAccountDescription", Settings.versions(
|
||||
new V(1, new FontSizeSetting(FontSizes.SMALL))
|
||||
|
Loading…
Reference in New Issue
Block a user