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 ab6b112 commit d0f6464Copy full SHA for d0f6464
plugwise_usb/connection/queue.py
@@ -187,7 +187,7 @@ async def _send_queue_worker(self) -> None:
187
_LOGGER.debug("Send_queue_worker started")
188
while self._running and self._stick is not None:
189
request = await self._submit_queue.get()
190
- _LOGGER.warning("Sending from send queue %s", request)
+ _LOGGER.debug("Sending from send queue %s with prio=%s", request, request.priority)
191
if request.priority == Priority.CANCEL:
192
self._submit_queue.task_done()
193
return
0 commit comments