Skip to content

Commit

Permalink
Remove duplicate logging of coil value (#177)
Browse files Browse the repository at this point in the history
Value is logged in _on_coil_read_success
  • Loading branch information
yozik04 authored Oct 13, 2024
2 parents 5c1eba7 + 2960e6b commit 4d373f5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion nibe/connection/nibegw.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ def _on_coil_value(self, coil_address: int, value: Union[float, int, str]) -> No
else:
coil_data = CoilData(coil, value)

logger.info(coil_data)
self._on_coil_read_success(coil_data)
except NibeException as e:
self._on_coil_read_error(coil_address, value, e)
Expand Down

0 comments on commit 4d373f5

Please sign in to comment.