Change SimpliSafe websocket reconnection log to DEBUG-level (#134063)

* Change SimpliSafe websocket reconnection log to `DEBUG`-level

* revert
This commit is contained in:
Aaron Bach 2024-12-29 09:23:44 -07:00 committed by Paulus Schoutsen
parent b84ae2abc3
commit 1a909d3a8a

View File

@ -485,7 +485,7 @@ class SimpliSafe:
except Exception as err: # noqa: BLE001
LOGGER.error("Unknown exception while connecting to websocket: %s", err)
LOGGER.warning("Reconnecting to websocket")
LOGGER.debug("Reconnecting to websocket")
await self._async_cancel_websocket_loop()
self._websocket_reconnect_task = self._hass.async_create_task(
self._async_start_websocket_loop()