summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glucometerutils/support/freestyle.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/glucometerutils/support/freestyle.py b/glucometerutils/support/freestyle.py
index 9b7d72e..7f9c7e8 100644
--- a/glucometerutils/support/freestyle.py
+++ b/glucometerutils/support/freestyle.py
@@ -103,12 +103,16 @@ class FreeStyleHidDevice(hiddevice.HidDevice):
usb_packet = _FREESTYLE_MESSAGE.build(
{'message_type': message_type, 'command': command})
+ logging.debug('Sending packet: %r', usb_packet)
+
self._write(usb_packet)
def _read_response(self):
"""Read the response from the device and extracts it."""
usb_packet = self._read()
+ logging.debug('Read packet: %r', usb_packet)
+
assert usb_packet
message_type = usb_packet[0]
message_length = usb_packet[1]