Java tutorial
//package com.java2s; import android.bluetooth.BluetoothGattDescriptor; public class Main { public static String formatGattDescriptor(BluetoothGattDescriptor descriptor) { String log = ""; if (descriptor == null) { log += "<null>"; } else { log += "descriptorUUID=" + descriptor.getUuid(); log += "descriptorValue=" + descriptor.getValue(); } return log; } }