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

Commit e521a855 authored by Mike Lockwood's avatar Mike Lockwood Committed by Android (Google) Code Review
Browse files

Merge "LocationTracker: Fix default values for debug and signal strength logging."

parents 9ce1319d 27a7a6cb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -193,11 +193,11 @@ public class TrackerService extends Service {
    }

    private boolean doDebugLogging() {
        return getPreferences().getBoolean(DEBUG_PREF, true);
        return getPreferences().getBoolean(DEBUG_PREF, false);
    }

    private boolean trackSignalStrength() {
        return getPreferences().getBoolean(SIGNAL_PREF, true);
        return getPreferences().getBoolean(SIGNAL_PREF, false);
    }

    private float getLocationMinDistance() {