diff --git a/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothStandardWeightProfile.java b/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothStandardWeightProfile.java index 4424d7d4..97c75d31 100644 --- a/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothStandardWeightProfile.java +++ b/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothStandardWeightProfile.java @@ -225,8 +225,10 @@ public class BluetoothStandardWeightProfile extends BluetoothCommunication { } else if(characteristic.equals(BluetoothGattUuid.CHARACTERISTIC_USER_CONTROL_POINT)) { handleUserControlPointNotify(value); - } else { - Timber.d(String.format("Got data: <%s>", byteInHex(value))); + } + else { + Timber.d(String.format("Notification from unhandled characteristic: %s, value: [%s]", + characteristic.toString(), byteInHex(value))); } }