@@ -1361,6 +1361,7 @@ def get_all_gateway_entities(self) -> None:
13611361 self .gw_entities .update (group_data )
13621362
13631363 self ._all_entity_data ()
1364+ LOGGER .debug ("HOI 1 gateway_id: %s" , self .gateway_id )
13641365
13651366 async def async_update (self ) -> PlugwiseData :
13661367 """Perform an full update: re-collect all gateway entities and their data and states.
@@ -1370,9 +1371,12 @@ async def async_update(self) -> PlugwiseData:
13701371 self .gw_data : GatewayData = {}
13711372 self .gw_entities : dict [str , GwEntityData ] = {}
13721373 self ._zones : dict [str , GwEntityData ] = {}
1374+ LOGGER .debug ("HOI 2 gateway_id: %s" , self .gateway_id )
13731375 try :
13741376 await self .full_xml_update ()
1377+ LOGGER .debug ("HOI 2a gateway_id: %s" , self .gateway_id )
13751378 self .get_all_gateway_entities ()
1379+ LOGGER .debug ("HOI 2b gateway_id: %s" , self .gateway_id )
13761380 # Set self._cooling_enabled - required for set_temperature(),
13771381 # also, check for a failed data-retrieval
13781382 if "heater_id" in self .gw_data :
@@ -1389,6 +1393,7 @@ async def async_update(self) -> PlugwiseData:
13891393 except KeyError as err :
13901394 raise DataMissingError ("No Plugwise actual data received" ) from err
13911395
1396+ LOGGER .debug ("HOI 2c gateway_id: %s" , self .gateway_id )
13921397 return PlugwiseData (
13931398 devices = self .gw_entities ,
13941399 gateway = self .gw_data ,
0 commit comments