From da3b2b0ec217d8baed554037a23eb285299f600e Mon Sep 17 00:00:00 2001 From: bittles Date: Sat, 31 Dec 2022 10:48:28 -0500 Subject: [PATCH] life span working remove extra debug logging, update version to 1.1.0 --- custom_components/ecovacs/manifest.json | 2 +- custom_components/ecovacs/sucksbumper.py | 46 ++++++++++++------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/custom_components/ecovacs/manifest.json b/custom_components/ecovacs/manifest.json index b103c60..55cdc54 100644 --- a/custom_components/ecovacs/manifest.json +++ b/custom_components/ecovacs/manifest.json @@ -1,7 +1,7 @@ { "domain": "ecovacs", "name": "Ecovacs Bumper", - "version": "1.0.4", + "version": "1.1.0", "documentation": "https://www.home-assistant.io/integrations/ecovacs", "requirements": ["sleekxmppfs==1.4.1", "click>=6", "requests>=2.18", "pycryptodome>=3.4", "pycountry-convert>=0.5", "paho-mqtt>=1.4", "stringcase>=1.2"], "codeowners": ["@OverloadUT", "@mib1185"], diff --git a/custom_components/ecovacs/sucksbumper.py b/custom_components/ecovacs/sucksbumper.py index a2c2790..4fad401 100644 --- a/custom_components/ecovacs/sucksbumper.py +++ b/custom_components/ecovacs/sucksbumper.py @@ -470,11 +470,11 @@ class VacBot(): self.iotmq.schedule(3600,self.refresh_components) def _handle_ctl(self, ctl): - _LOGGER.debug("super handle_ctl called with ctl:") - _LOGGER.debug(ctl) +# _LOGGER.debug("super handle_ctl called with ctl:") +# _LOGGER.debug(ctl) method = '_handle_' + ctl['event'] - _LOGGER.debug("method assigned:") - _LOGGER.debug(method) +# _LOGGER.debug("method assigned:") +# _LOGGER.debug(method) if hasattr(self, method): getattr(self, method)(ctl) @@ -490,15 +490,15 @@ class VacBot(): def _handle_life_span(self, event): - _LOGGER.debug("_handle_life_span called, event is: ") - _LOGGER.debug(event) - _LOGGER.debug("event shown now continue with handle life span") +# _LOGGER.debug("_handle_life_span called, event is: ") +# _LOGGER.debug(event) +# _LOGGER.debug("event shown now continue with handle life span") type = event['type'] - _LOGGER.debug("type in handle life span: ") - _LOGGER.debug(type) - _LOGGER.debug("type shown now continue with handle life span") +# _LOGGER.debug("type in handle life span: ") +# _LOGGER.debug(type) +# _LOGGER.debug("type shown now continue with handle life span") try: type = COMPONENT_FROM_ECOVACS[type] @@ -949,9 +949,9 @@ class EcoVacsXMPP(ClientXMPP): the_good_part = message.get_payload()[0][0] as_dict = self._ctl_to_dict(the_good_part) - _LOGGER.debug("handle_ctl called with as_dict:") - _LOGGER.debug(as_dict) - _LOGGER.debug("end of as_dict") +# _LOGGER.debug("handle_ctl called with as_dict:") +# _LOGGER.debug(as_dict) +# _LOGGER.debug("end of as_dict") if as_dict is not None: for s in self.ctl_subscribers: @@ -959,9 +959,9 @@ class EcoVacsXMPP(ClientXMPP): def _ctl_to_dict(self, xml): result = xml.attrib.copy() - _LOGGER.debug("result from xml is :") - _LOGGER.debug(result) - _LOGGER.debug("end of result") +# _LOGGER.debug("result from xml is :") +# _LOGGER.debug(result) +# _LOGGER.debug("end of result") if 'td' in result: @@ -973,9 +973,9 @@ class EcoVacsXMPP(ClientXMPP): if not RepresentsInt(result[key]): #Fix to handle negative int values result[key] = stringcase.snakecase(result[key]) - _LOGGER.debug("td detected in result and result is:") - _LOGGER.debug(result) - _LOGGER.debug("end of td detect result") +# _LOGGER.debug("td detected in result and result is:") +# _LOGGER.debug(result) +# _LOGGER.debug("end of td detect result") return result @@ -992,9 +992,9 @@ class EcoVacsXMPP(ClientXMPP): if not RepresentsInt(result[key]): #Fix to handle negative int values result[key] = stringcase.snakecase(result[key]) - _LOGGER.debug("type detected in result and result is:") - _LOGGER.debug(result) - _LOGGER.debug("end of type detect result") +# _LOGGER.debug("type detected in result and result is:") +# _LOGGER.debug(result) +# _LOGGER.debug("end of type detect result") return result @@ -1167,7 +1167,7 @@ class GetBatteryState(VacBotCommand): class GetLifeSpan(VacBotCommand): def __init__(self, component): - _LOGGER.debug("GetLifeSpan called by VacBot**************") +# _LOGGER.debug("GetLifeSpan called by VacBot**************") super().__init__('GetLifeSpan', {'type': COMPONENT_TO_ECOVACS[component]})