summaryrefslogtreecommitdiffstats
path: root/src/com/android/bluetooth
diff options
context:
space:
mode:
authorChenjie Luo <cjluo@google.com>2015-07-15 17:16:03 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-07-15 17:16:13 +0000
commit51b7ab3d2d9a166e1fac22ff442ad3221a838c91 (patch)
tree76ca7359534eb9e89fb843c8bfb46bdf864f69a4 /src/com/android/bluetooth
parent273303e7c0a0d1fe0493ed327070aeb8fb80c808 (diff)
parent69e5f6f65981c49c1723188469b79389841c9f2e (diff)
downloadandroid_packages_apps_Bluetooth-51b7ab3d2d9a166e1fac22ff442ad3221a838c91.tar.gz
android_packages_apps_Bluetooth-51b7ab3d2d9a166e1fac22ff442ad3221a838c91.tar.bz2
android_packages_apps_Bluetooth-51b7ab3d2d9a166e1fac22ff442ad3221a838c91.zip
Merge "Remove extra logging with privacy info" into mnc-dev
Diffstat (limited to 'src/com/android/bluetooth')
-rwxr-xr-xsrc/com/android/bluetooth/hfp/AtPhonebook.java1
-rw-r--r--src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java4
2 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/bluetooth/hfp/AtPhonebook.java b/src/com/android/bluetooth/hfp/AtPhonebook.java
index 32976d0c4..868733a35 100755
--- a/src/com/android/bluetooth/hfp/AtPhonebook.java
+++ b/src/com/android/bluetooth/hfp/AtPhonebook.java
@@ -577,7 +577,6 @@ public class AtPhonebook {
record = "+CPBR: " + index + ",\"" + number + "\"," + regionType + ",\"" + name + "\"";
record = record + "\r\n\r\n";
atCommandResponse = record;
- log("processCpbrCommand - atCommandResponse = "+atCommandResponse);
mStateMachine.atResponseStringNative(atCommandResponse, getByteAddress(device));
if (!pbr.cursor.moveToNext()) {
break;
diff --git a/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java b/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java
index 6bacd3b45..7ff8fcf52 100644
--- a/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java
+++ b/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java
@@ -770,8 +770,6 @@ final class HeadsetClientStateMachine extends StateMachine {
}
private void updateClip(String number) {
- Log.d(TAG, "updateClip number: " + number);
-
BluetoothHeadsetClientCall c = getCall(BluetoothHeadsetClientCall.CALL_STATE_INCOMING);
if (c == null) {
@@ -791,8 +789,6 @@ final class HeadsetClientStateMachine extends StateMachine {
}
private void addCallWaiting(String number) {
- Log.d(TAG, "addCallWaiting number: " + number);
-
if (getCall(BluetoothHeadsetClientCall.CALL_STATE_WAITING) == null) {
addCall(BluetoothHeadsetClientCall.CALL_STATE_WAITING, number);
}