Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1ee6e145 authored by Satoshi Kataoka's avatar Satoshi Kataoka
Browse files

Hide statustics logging option

Change-Id: I1ee258948a8335af7996f9e3afcc0508adbb1ac0
parent 372f9da4
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -37,6 +37,8 @@ public final class DebugSettings extends PreferenceFragment
    private static final String DEBUG_MODE_KEY = "debug_mode";
    public static final String FORCE_NON_DISTINCT_MULTITOUCH_KEY = "force_non_distinct_multitouch";
    public static final String PREF_USABILITY_STUDY_MODE = "usability_study_mode";
    private static final String PREF_STATISTICS_LOGGING_KEY = "enable_logging";
    private static final boolean SHOW_STATISTICS_LOGGING = false;

    private boolean mServiceNeedsRestart = false;
    private CheckBoxPreference mDebugMode;
@@ -55,6 +57,12 @@ public final class DebugSettings extends PreferenceFragment
                    ResearchLogger.DEFAULT_USABILITY_STUDY_MODE));
            checkbox.setSummary(R.string.settings_warning_researcher_mode);
        }
        final Preference statisticsLoggingPref = findPreference(PREF_STATISTICS_LOGGING_KEY);
        if (statisticsLoggingPref instanceof CheckBoxPreference) {
            if (!SHOW_STATISTICS_LOGGING) {
                getPreferenceScreen().removePreference(statisticsLoggingPref);
            }
        }

        mServiceNeedsRestart = false;
        mDebugMode = (CheckBoxPreference) findPreference(DEBUG_MODE_KEY);