From fcb4aecf8a635e60f59a389777a13e00f3da27ac Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Tue, 2 Sep 2014 19:54:55 -0400 Subject: [PATCH] Updated all logging to verbose and disabled it --- .../src/com/TwentyCodes/android/location/LocationService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LocationLib/src/com/TwentyCodes/android/location/LocationService.java b/LocationLib/src/com/TwentyCodes/android/location/LocationService.java index c039764..542fd15 100644 --- a/LocationLib/src/com/TwentyCodes/android/location/LocationService.java +++ b/LocationLib/src/com/TwentyCodes/android/location/LocationService.java @@ -102,7 +102,8 @@ public class LocationService extends Service implements LocationListener { * @author ricky barrette */ private void broadcastLocation() { - Log.d(TAG, "broadcastLocation()"); + if(Debug.DEBUG) + Log.d(TAG, "broadcastLocation()"); if (mLocation != null) { final Intent locationUpdate = new Intent(); if (mIntent.getAction() != null)