We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0019f commit 498ac6dCopy full SHA for 498ac6d
switchbot/__init__.py
@@ -50,7 +50,7 @@ def _sendpacket(self, key, retry=2) -> bool:
50
if retry < 1 or not self._connect():
51
_LOGGER.error("Cannot connect to switchbot.", exc_info=True)
52
return False
53
- _LOGGER.warning("Cannot connect to switchbot. Retrying", exc_info=True)
+ _LOGGER.warning("Cannot connect to switchbot. Retrying")
54
return self._sendpacket(key, retry-1)
55
return True
56
0 commit comments