Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zigpy_znp/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ async def on_zdo_message(self, msg: c.ZDO.MsgCbIncoming.Callback) -> None:
cluster_id=packet.cluster_id, data=packet.data.serialize()
)
except Exception:
LOGGER.warning("Failed to deserialize ZDO packet", exc_info=True)
LOGGER.debug(f"Failed to deserialize ZDO packet {packet}", exc_info=True)
else:
if zdo_hdr.command_id == zdo_t.ZDOCmd.Device_annce:
_, ieee, _ = zdo_args
Expand Down
Loading