We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26ad87 commit f364bcfCopy full SHA for f364bcf
1 file changed
plugwise_usb/nodes/circle.py
@@ -964,12 +964,18 @@ async def node_info_update(
964
async def _node_info_load_from_cache(self) -> bool:
965
"""Load node info settings from cache."""
966
result = await super()._node_info_load_from_cache()
967
+ _LOGGER.debug("circle._node_info_load_from_cache | result=%s", result)
968
if (
969
current_log_address := self._get_cache(CACHE_CURRENT_LOG_ADDRESS)
970
) is not None:
971
self._current_log_address = int(current_log_address)
972
+ _LOGGER.debug(
973
+ "circle._node_info_load_from_cache | current_log_address=%s",
974
+ self._current_log_address
975
+ )
976
return result
977
978
+ _LOGGER.debug("circle._node_info_load_from_cache | current_log_address=None")
979
return False
980
981
# pylint: disable=too-many-arguments
0 commit comments