Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion switchbot/devices/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,9 @@ async def _sendcommand(self, key: str, retry: int | None = None) -> bytes:
return await self._send_command_locked(key, command)
except BleakNotFoundError:
_LOGGER.error(
"%s: device not found or no longer in range; Try restarting Bluetooth",
"%s: device not found, no longer in range, or poor RSSI: %s",
self.name,
self.rssi,
exc_info=True,
)
return b"\x00"
Expand Down