From 8b0e8a7536cae1bcd8a928eeebba6324170fad23 Mon Sep 17 00:00:00 2001 From: Rene Nulsch Date: Fri, 6 Dec 2024 15:08:17 +0100 Subject: [PATCH] remove logging --- custom_components/mbapi2020/websocket.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/custom_components/mbapi2020/websocket.py b/custom_components/mbapi2020/websocket.py index 0296f91e..44659c72 100644 --- a/custom_components/mbapi2020/websocket.py +++ b/custom_components/mbapi2020/websocket.py @@ -114,16 +114,13 @@ async def _async_stop_handler(event): async def async_stop(self, now: datetime = datetime.now()): """Close connection.""" - LOGGER.debug("async_stop - 1") self.is_stopping = True self._watchdog.cancel() self._pingwatchdog.cancel() self.connection_state = "closed" if self._connection is not None: - LOGGER.debug("async_stop - 2") await self._connection.close() - LOGGER.debug("async_stop - 3") async def initiatiate_connection_disconnect_with_reconnect(self): """Initiate a connection disconnect."""