Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 447bb484 authored by William Escande's avatar William Escande
Browse files

Display the package trying to (un)bind a profile

Bug: 262605980
Test: check log during Bluetooth boot
Change-Id: I53e948e6a9f0cac2d2dffbd4f6a4c5f3be1403d8
parent eee0a549
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ public abstract class BluetoothProfileConnector<T> {
    private boolean doBind() {
        synchronized (mConnection) {
            if (mService == null) {
                logDebug("Binding service...");
                logDebug("Binding service for " + mContext.getPackageName());
                mCloseGuard.open("doUnbind");
                try {
                    return BluetoothAdapter.getDefaultAdapter().getBluetoothManager()
@@ -148,7 +148,7 @@ public abstract class BluetoothProfileConnector<T> {
    private void doUnbind() {
        synchronized (mConnection) {
            if (mService != null) {
                logDebug("Unbinding service...");
                logDebug("Unbinding service for " + mContext.getPackageName());
                mCloseGuard.close();
                try {
                    BluetoothAdapter.getDefaultAdapter().getBluetoothManager()