瀏覽代碼

missing await

J. Nick Koston 2 年之前
父節點
當前提交
4d6aac7f26
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      switchbot/devices/device.py

+ 2 - 2
switchbot/devices/device.py

@@ -226,10 +226,10 @@ class SwitchbotDevice:
         await self._ensure_connected()
         try:
             return await self._execute_command_locked(key, command)
-        except BleakError:
+        except BleakError as ex:
             # Disconnect so we can reset state and try again
             _LOGGER.debug(
-                "%s: Disconnecting due to error; RSSI: %s", self.name, self.rssi
+                "%s: RSSI: %s; Disconnecting due to error: %s", self.name, self.rssi, ex
             )
             await self._execute_disconnect()
             raise