Skip to content

Commit

Permalink
Log sent command kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Jul 22, 2024
1 parent 07e16f8 commit 16f0e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bellows/ezsp/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _ezsp_frame_tx(self, name: str) -> bytes:

async def command(self, name, *args, **kwargs) -> Any:
"""Serialize command and send it."""
LOGGER.debug("Sending command %s: %s", name, args)
LOGGER.debug("Sending command %s: %s %s", name, args, kwargs)
data = self._ezsp_frame(name, *args, **kwargs)
cmd_id, _, rx_schema = self.COMMANDS[name]
future = asyncio.get_running_loop().create_future()
Expand Down

0 comments on commit 16f0e41

Please sign in to comment.