summaryrefslogtreecommitdiffstats
path: root/src/com/android/bluetooth/hid/HidService.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/bluetooth/hid/HidService.java')
-rwxr-xr-xsrc/com/android/bluetooth/hid/HidService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/bluetooth/hid/HidService.java b/src/com/android/bluetooth/hid/HidService.java
index f15692c84..8d38e0ee9 100755
--- a/src/com/android/bluetooth/hid/HidService.java
+++ b/src/com/android/bluetooth/hid/HidService.java
@@ -34,7 +34,7 @@ import com.android.bluetooth.btservice.AdapterService;
* @hide
*/
public class HidService extends ProfileService {
- private static final boolean DBG = true;
+ private static final boolean DBG = false;
private static final String TAG = "HidService";
private Map<BluetoothDevice, Integer> mInputDevices;
@@ -555,7 +555,7 @@ public class HidService extends ProfileService {
/* Notifying the connection state change of the profile before sending the intent for
connection state change, as it was causing a race condition, with the UI not being
updated with the correct connection state. */
- if (DBG) log("Connection state " + device + ": " + prevState + "->" + newState);
+ log("Connection state " + device + ": " + prevState + "->" + newState);
notifyProfileConnectionStateChanged(device, BluetoothProfile.INPUT_DEVICE,
newState, prevState);
Intent intent = new Intent(BluetoothInputDevice.ACTION_CONNECTION_STATE_CHANGED);