Skip to content

Commit

Permalink
Log the waiting response queue
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Dec 30, 2023
1 parent 9a67d7d commit 28c749e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zigpy_deconz/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,8 +666,9 @@ def data_received(self, data: bytes) -> None:
fut.set_exception(exc)
except asyncio.InvalidStateError:
LOGGER.debug(
"Duplicate or delayed response for 0x:%02x sequence",
"Duplicate or delayed response for seq %s (awaiting %s)",
command.seq,
self._awaiting[command.seq],
)

if exc is not None:
Expand Down

0 comments on commit 28c749e

Please sign in to comment.