Skip to content

Commit 9ba02f1

Browse files
committed
Reduce unnecessary logging verbosity
Unhandled commands will be logged completely in the preceding line
1 parent 4edfb13 commit 9ba02f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zigpy_znp/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ def _unhandled_command(self, command: t.CommandBase):
718718
Called when a command that is not handled by any listener is received.
719719
"""
720720

721-
LOGGER.debug("Command was not handled: %s", command)
721+
LOGGER.debug("Command was not handled")
722722

723723
@contextlib.asynccontextmanager
724724
async def capture_responses(self, responses):

0 commit comments

Comments
 (0)