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:
Mike Lockwood
2010-03-23 12:27:38 -04:00
parent e5efe212de
commit 27a7a6cbfe

View File

@@ -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() {