1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 03:50:43 +02:00

compile fix

This commit is contained in:
Andreas Shimokawa 2015-05-12 11:12:53 +02:00
parent 7540a3955b
commit f8341918ee

View File

@ -657,9 +657,9 @@ public class PebbleProtocol extends GBDeviceProtocol {
switch (pebbleCmd) {
case APPLICATIONMESSAGE_PUSH:
UUID uuid = new UUID(uuid_high, uuid_low);
Log.info(TAG, "got APPLICATIONMESSAGE PUSH from UUID " + uuid + " , dict size " + dictSize);
LOG.info("got APPLICATIONMESSAGE PUSH from UUID " + uuid + " , dict size " + dictSize);
if (WeatherNeatUUID.equals(uuid)) {
Log.info(TAG, "We know you, you are WeatherNeat");
LOG.info("We know you, you are WeatherNeat");
GBDeviceCommandSendBytes sendBytes = new GBDeviceCommandSendBytes();
sendBytes.encodedBytes = encodeApplicationMessageTest();
cmd = sendBytes;