diff --git a/bellows/ezsp/protocol.py b/bellows/ezsp/protocol.py index 26b59554..91598636 100644 --- a/bellows/ezsp/protocol.py +++ b/bellows/ezsp/protocol.py @@ -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()