Skip to content

Commit 6327fd9

Browse files
authored
fix: remove warning messages that were used for debugging (#48)
1 parent db6aff4 commit 6327fd9

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

feeph/i2c/burst_handler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def read_register(self, register: int, byte_count: int = 1, max_tries: int = 5)
6969
for cur_try in range(1, 1 + max_tries):
7070
try:
7171
self._i2c_bus.writeto_then_readfrom(address=self._i2c_adr, buffer_out=buf_r, buffer_in=buf_w)
72-
LH.warning("read_register(): %s", buf_w)
7372
return convert_bytearry_to_uint(buf_w)
7473
except OSError as e:
7574
# [Errno 121] Remote I/O error

0 commit comments

Comments
 (0)