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 744b290 commit 335ed33Copy full SHA for 335ed33
plugwise_usb/connection/queue.py
@@ -194,7 +194,8 @@ async def _send_queue_worker(self) -> None:
194
195
queue_depth = self._stick.queue_depth - self._submit_queue.dropped_msgs
196
if queue_depth > 3:
197
- _LOGGER.warning("Awaiting plugwise responses %d", queue_depth)
+ _LOGGER.warning("Awaiting responses %d", queue_depth)
198
+ _LOGGER.warning("Requests dropped: %d", self._submit_queue.dropped_msgs)
199
await sleep(0.125)
200
201
await self._stick.write_to_stick(request)
0 commit comments