1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-08-17 04:40:36 +02:00

Improved logging

This commit is contained in:
cpfeiffer 2016-11-13 20:20:32 +01:00
parent 3cc8d887ca
commit ddaf51768d

View File

@ -9,7 +9,6 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import nodomain.freeyourgadget.gadgetbridge.service.btle.BtLEAction; import nodomain.freeyourgadget.gadgetbridge.service.btle.BtLEAction;
import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder;
import static nodomain.freeyourgadget.gadgetbridge.service.btle.GattDescriptor.UUID_DESCRIPTOR_GATT_CLIENT_CHARACTERISTIC_CONFIGURATION; import static nodomain.freeyourgadget.gadgetbridge.service.btle.GattDescriptor.UUID_DESCRIPTOR_GATT_CLIENT_CHARACTERISTIC_CONFIGURATION;
@ -20,7 +19,7 @@ import static nodomain.freeyourgadget.gadgetbridge.service.btle.GattDescriptor.U
*/ */
public class NotifyAction extends BtLEAction { public class NotifyAction extends BtLEAction {
private static final Logger LOG = LoggerFactory.getLogger(TransactionBuilder.class); private static final Logger LOG = LoggerFactory.getLogger(NotifyAction.class);
protected final boolean enableFlag; protected final boolean enableFlag;
private boolean hasWrittenDescriptor = true; private boolean hasWrittenDescriptor = true;
@ -49,7 +48,7 @@ public class NotifyAction extends BtLEAction {
hasWrittenDescriptor = false; hasWrittenDescriptor = false;
} }
} else { } else {
LOG.warn("sleep descriptor null"); LOG.warn("Descriptor CLIENT_CHARACTERISTIC_CONFIGURATION for characteristic " + getCharacteristic().getUuid() + " is null");
hasWrittenDescriptor = false; hasWrittenDescriptor = false;
} }
} else { } else {