private static void describeGattServices()

in amazonfreertossdk/src/main/java/software/amazon/freertos/amazonfreertossdk/AmazonFreeRTOSDevice.java [1276:1286]


    private static void describeGattServices(List<BluetoothGattService> gattServices) {
        for (BluetoothGattService service : gattServices) {
            Log.d(TAG, "GattService: " + service.getUuid());
            List<BluetoothGattCharacteristic> characteristics = service.getCharacteristics();
            for (BluetoothGattCharacteristic characteristic : characteristics) {
                Log.d(TAG, " |-characteristics: " +
                        (uuidToName.containsKey(characteristic.getUuid().toString()) ?
                                uuidToName.get(characteristic.getUuid().toString()) : characteristic.getUuid()));
            }
        }
    }