diff --git a/custom_components/eltako/gateway.py b/custom_components/eltako/gateway.py index 27927664..efa3d623 100644 --- a/custom_components/eltako/gateway.py +++ b/custom_components/eltako/gateway.py @@ -127,6 +127,7 @@ def process_messages(self, data): self._fire_last_message_received_event() def process_connection_status_signal(self, data): + LOGGER.info(f"CHANGE CONNECTION STATUS: {self._bus.is_active()}") if self._connection_state_handler: asyncio.ensure_future( self._connection_state_handler( self._bus.is_active() ),