1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-07 14:11:36 +02:00

Log when no listener is registered for a characteristic change

This commit is contained in:
cpfeiffer 2015-09-09 23:23:38 +02:00
parent e80a3cc591
commit 22a9ff1819

View File

@ -403,6 +403,8 @@ public final class BtLEQueue {
}
if (getCallbackToUse() != null) {
getCallbackToUse().onCharacteristicChanged(gatt, characteristic);
} else {
LOG.info("No gattcallback registered, ignoring characteristic change");
}
}