1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-27 20:36:51 +01:00

BtLEQueue: Log MTU changes

This commit is contained in:
José Rebelo 2024-09-01 13:41:37 +01:00
parent 593d6d6b25
commit 4f7fb8117e

View File

@ -598,6 +598,8 @@ public final class BtLEQueue {
public void onMtuChanged(BluetoothGatt gatt, int mtu, int status) {
super.onMtuChanged(gatt, mtu, status);
LOG.debug("mtu changed to {}{}", mtu, getStatusString(status));
if(getCallbackToUse() != null){
getCallbackToUse().onMtuChanged(gatt, mtu, status);
}