1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-20 17:19:01 +00:00

chore: improve logging in received_message_handler

This commit is contained in:
M1nd3r 2025-03-24 12:36:11 +01:00
parent a6db6b2dd6
commit 8c5e24b93c

View File

@ -152,8 +152,8 @@ def _send_ack(ctx: Channel, ack_bit: int) -> Awaitable[None]:
if __debug__ and utils.ALLOW_DEBUG_MESSAGES:
log.debug(
__name__,
"Writing ACK message to a channel with id: %d, ack_bit: %d",
ctx.get_channel_id_int(),
"Writing ACK message to a channel with cid: %s, ack_bit: %d",
get_bytes_as_str(ctx.channel_id),
ack_bit,
)
return write_payload_to_wire_and_add_checksum(ctx.iface, header, b"")
@ -404,6 +404,11 @@ async def _handle_state_ENCRYPTED_TRANSPORT(ctx: Channel, message_length: int) -
],
)
)
if __debug__ and utils.ALLOW_DEBUG_MESSAGES:
log.debug(
__name__,
f"Scheduled message to be handled by a session (session_id: {session_id}, msg_type (int): {message_type})",
)
async def _handle_pairing(ctx: Channel, message_length: int) -> None: