LocationTracker: Fix default values for debug and signal strength logging.
Set default to false to match the checkbox values in the preference resource. Signed-off-by: Mike Lockwood <lockwood@android.com>
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user