diff --git a/rotary_controller_python/utils/base_device.py b/rotary_controller_python/utils/base_device.py index 2c77ace..2ca6fc8 100644 --- a/rotary_controller_python/utils/base_device.py +++ b/rotary_controller_python/utils/base_device.py @@ -51,6 +51,7 @@ def write_long(self, address, value): value=int(value), ) self.dm.connected = True + log.info(f"Written {int(value)} to address {address}") except Exception as e: self.dm.connected = False log.error(e.__str__())