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 ecd56c7 commit 011cc29Copy full SHA for 011cc29
plugwise_usb/nodes/sed.py
@@ -647,6 +647,7 @@ async def _send_tasks(self) -> None:
647
if len(self._send_task_queue) == 0:
648
return
649
async with self._send_task_lock:
650
+ _LOGGER.debug("SED awake, send tasks for execution")
651
task_result = await gather(*self._send_task_queue)
652
if not all(task_result):
653
_LOGGER.warning(
@@ -662,6 +663,7 @@ async def schedule_task_when_awake(
662
663
) -> None:
664
"""Add task to queue to be executed when node is awake."""
665
if iscoroutine(task_fn):
666
+ _LOGGER.debug("Add task %s to queue waiting for awake", task_fn)
667
668
self._send_task_queue.append(task_fn)
669
0 commit comments