improve some log statements

live-sensor-data
cpfeiffer 2015-05-24 15:00:45 +02:00
parent 637b43e892
commit a7792f6b72
1 changed files with 3 additions and 3 deletions

View File

@ -37,11 +37,11 @@ public class MiBandNotifyAction extends NotifyAction {
if (notifyDescriptor != null) { if (notifyDescriptor != null) {
int properties = getCharacteristic().getProperties(); int properties = getCharacteristic().getProperties();
if ((properties & 0x10) > 0) { if ((properties & 0x10) > 0) {
LOG.debug("properties & 0x10 > 0"); LOG.debug("use NOTIFICATION");
notifyDescriptor.setValue(enableFlag ? BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE : BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE); notifyDescriptor.setValue(enableFlag ? BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE : BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE);
result = gatt.writeDescriptor(notifyDescriptor); result = gatt.writeDescriptor(notifyDescriptor);
} else if ((properties & 0x20) > 0){ } else if ((properties & 0x20) > 0) {
LOG.debug("properties & 0x20 > 0"); LOG.debug("use INDICATION");
notifyDescriptor.setValue(enableFlag ? BluetoothGattDescriptor.ENABLE_INDICATION_VALUE : BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE); notifyDescriptor.setValue(enableFlag ? BluetoothGattDescriptor.ENABLE_INDICATION_VALUE : BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE);
result = gatt.writeDescriptor(notifyDescriptor); result = gatt.writeDescriptor(notifyDescriptor);
hasWrittenDescriptor = true; hasWrittenDescriptor = true;