Be dump the content of the notification to the debug log

here
Daniele Gobbetti 2015-10-19 15:16:21 +02:00
parent 4e0fed8857
commit 6460b391d9
1 changed files with 5 additions and 1 deletions

View File

@ -409,7 +409,11 @@ public final class BtLEQueue {
@Override
public void onCharacteristicChanged(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic) {
LOG.debug("characteristic changed: " + characteristic.getUuid());
String content = "";
for (byte b : characteristic.getValue()) {
content += String.format(" 0x%1x", b);
}
LOG.debug("characteristic changed: " + characteristic.getUuid() + " value: " + content );
if (!checkCorrectGattInstance(gatt, "characteristic changed")) {
return;
}