summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavlin Radoslavov <pavlin@google.com>2016-09-15 13:15:41 -0700
committerPavlin Radoslavov <pavlin@google.com>2016-09-21 18:00:40 -0700
commitdda1ef88441ef5361aa891670b4e542230bd3bc1 (patch)
treed3d65f575f01c48330804500e1d4858f019b71c4
parent2b8f0acc2ceb2c027201bfe981546018a3ffd20b (diff)
downloadandroid_packages_apps_Bluetooth-dda1ef88441ef5361aa891670b4e542230bd3bc1.tar.gz
android_packages_apps_Bluetooth-dda1ef88441ef5361aa891670b4e542230bd3bc1.tar.bz2
android_packages_apps_Bluetooth-dda1ef88441ef5361aa891670b4e542230bd3bc1.zip
Enable debug logs by default in BluetoothPbapReceiver
Enabled more logs to help identify issues when Bluetooth is started because of PBAP. Bug: 31442739 Bug: 31457305 Test: manual - checked logcat output for (lack of) excessive logs Change-Id: I6348fe57a8b3546a8152416a5db95b8b2226e166 (cherry picked from commit beacc3b09d1192c70c6385c5666e5706f7662a75)
-rw-r--r--src/com/android/bluetooth/pbap/BluetoothPbapReceiver.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/com/android/bluetooth/pbap/BluetoothPbapReceiver.java b/src/com/android/bluetooth/pbap/BluetoothPbapReceiver.java
index 2356e81f0..c0150ed2c 100644
--- a/src/com/android/bluetooth/pbap/BluetoothPbapReceiver.java
+++ b/src/com/android/bluetooth/pbap/BluetoothPbapReceiver.java
@@ -42,24 +42,24 @@ public class BluetoothPbapReceiver extends BroadcastReceiver {
private static final String TAG = "BluetoothPbapReceiver";
- private static final boolean V = BluetoothPbapService.VERBOSE;
+ private static final boolean D = BluetoothPbapService.DEBUG;
@Override
public void onReceive(Context context, Intent intent) {
- if (V) Log.v(TAG, "PbapReceiver onReceive ");
+ if (D) Log.d(TAG, "PbapReceiver onReceive");
Intent in = new Intent();
in.putExtras(intent);
in.setClass(context, BluetoothPbapService.class);
String action = intent.getAction();
in.putExtra("action", action);
- if (V) Log.v(TAG,"***********action = " + action);
+ if (D) Log.d(TAG, "***********action = " + action);
boolean startService = true;
if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED)) {
int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.ERROR);
in.putExtra(BluetoothAdapter.EXTRA_STATE, state);
- if (V) Log.v(TAG,"***********state = " + state);
+ if (D) Log.d(TAG, "***********state = " + state);
if ((state == BluetoothAdapter.STATE_TURNING_ON)
|| (state == BluetoothAdapter.STATE_OFF)) {
//FIX: We turn on PBAP after BluetoothAdapter.STATE_ON,
@@ -70,11 +70,13 @@ public class BluetoothPbapReceiver extends BroadcastReceiver {
// Don't forward intent unless device has bluetooth and bluetooth is enabled.
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
if (adapter == null || !adapter.isEnabled()) {
+ if (D) Log.d(TAG, "BluetoothAdapter is not enabled (" +
+ adapter + "). Would not start service.");
startService = false;
}
}
if (startService) {
- if (V) Log.v(TAG,"***********Calling start service!!!! with action = " + in.getAction());
+ if (D) Log.d(TAG,"***********Calling start service!!!! with action = " + in.getAction());
context.startService(in);
}
}