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

Commit e5d5773f authored by Bryce Lee's avatar Bryce Lee Committed by android-build-merger
Browse files

Improve logging in BluetoothHeadsetClientCall. am: 3c67873f am: 180dd72a am: a83d5186

am: 0a8c81a2

* commit '0a8c81a2':
  Improve logging in BluetoothHeadsetClientCall.
parents 2e8ae98c 0a8c81a2
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -172,8 +172,12 @@ public final class BluetoothHeadsetClientCall implements Parcelable {
    }

    public String toString() {
        return toString(false);
    }

    public String toString(boolean loggable) {
        StringBuilder builder = new StringBuilder("BluetoothHeadsetClientCall{mDevice: ");
        builder.append(mDevice);
        builder.append(loggable ? mDevice.hashCode() : mDevice);
        builder.append(", mId: ");
        builder.append(mId);
        builder.append(", mState: ");
@@ -189,7 +193,7 @@ public final class BluetoothHeadsetClientCall implements Parcelable {
            default: builder.append(mState); break;
        }
        builder.append(", mNumber: ");
        builder.append(mNumber);
        builder.append(loggable ? mNumber.hashCode() : mNumber);
        builder.append(", mMultiParty: ");
        builder.append(mMultiParty);
        builder.append(", mOutgoing: ");