From 16f0e41192d1314f9d88aac228c22149f0fba082 Mon Sep 17 00:00:00 2001 From: puddly <32534428+puddly@users.noreply.github.com> Date: Mon, 22 Jul 2024 19:07:14 -0400 Subject: [PATCH] Log sent command kwargs --- bellows/ezsp/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()