diff options
-rw-r--r-- | tests/LocationTracker/src/com/android/locationtracker/TrackerService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/LocationTracker/src/com/android/locationtracker/TrackerService.java b/tests/LocationTracker/src/com/android/locationtracker/TrackerService.java index 5b756533e2d1..e2332bfe4b8a 100644 --- a/tests/LocationTracker/src/com/android/locationtracker/TrackerService.java +++ b/tests/LocationTracker/src/com/android/locationtracker/TrackerService.java @@ -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() { |