Skip to content

Commit d0f6464

Browse files
committed
Add request.priority to debug message
1 parent ab6b112 commit d0f6464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise_usb/connection/queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ async def _send_queue_worker(self) -> None:
187187
_LOGGER.debug("Send_queue_worker started")
188188
while self._running and self._stick is not None:
189189
request = await self._submit_queue.get()
190-
_LOGGER.warning("Sending from send queue %s", request)
190+
_LOGGER.debug("Sending from send queue %s with prio=%s", request, request.priority)
191191
if request.priority == Priority.CANCEL:
192192
self._submit_queue.task_done()
193193
return

0 commit comments

Comments
 (0)