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

Commit 87f0c9bf authored by slki.shin's avatar slki.shin
Browse files

Minor: convert byte[] to String



Before: pinRequestCallback: [B@e67daa3 name:[B@3e7f1a0 cod:2360328
After: pinRequestCallback: 70:2C:1F:37:7C:B8 name:artik cod:40000

Change-Id: If2c71def0dcb86b404685aa1f6b13cfaa4efa27a
Signed-off-by: default avatarslki.shin <slki.shin@samsung.com>
parent 0a870493
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -519,7 +519,8 @@ final class BondStateMachine extends StateMachine {
                BluetoothDevice.BOND_BONDING,
                BluetoothProtoEnums.BOND_SUB_STATE_LOCAL_PIN_REQUESTED, 0);

        infoLog("pinRequestCallback: " + address + " name:" + name + " cod:" + cod);
        infoLog("pinRequestCallback: " + bdDevice.getAddress()
                + " name:" + bdDevice.getName() + " cod:" + new BluetoothClass(cod));

        Message msg = obtainMessage(PIN_REQUEST);
        msg.obj = bdDevice;