aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2022-01-24 10:58:51 +0100
committerAlexander Couzens <lynxis@fe80.eu>2022-01-24 10:58:51 +0100
commit7674b08519f73b3078efc675164780ee4c970b62 (patch)
tree165f56cc8c1375898fac442f895cbc33332fc33f
parentea9a91f5ce481b96e93f399d28f6d0d3841cfc36 (diff)
reduce debugging output on the serial
-rw-r--r--firmware/libcommon/source/card_emu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/libcommon/source/card_emu.c b/firmware/libcommon/source/card_emu.c
index 19a519a..43b1732 100644
--- a/firmware/libcommon/source/card_emu.c
+++ b/firmware/libcommon/source/card_emu.c
@@ -313,7 +313,7 @@ static void flush_rx_buffer(struct card_handle *ch)
rd = (struct cardemu_usb_msg_rx_data *) msg->l2h;
rd->data_len = msgb_l2len(msg) - sizeof(*rd);
- TRACE_INFO("%u: %s (%u)\n\r",
+ TRACE_DEBUG("%u: %s (%u)\n\r",
ch->num, __func__, rd->data_len);
usb_buf_upd_len_and_submit(msg);
@@ -812,7 +812,7 @@ static void send_tpdu_header(struct card_handle *ch)
struct cardemu_usb_msg_rx_data *rd;
uint8_t *cur;
- TRACE_INFO("%u: %s: %02x %02x %02x %02x %02x\r\n",
+ TRACE_DEBUG("%u: %s: %02x %02x %02x %02x %02x\r\n",
ch->num, __func__,
ch->tpdu.hdr[0], ch->tpdu.hdr[1],
ch->tpdu.hdr[2], ch->tpdu.hdr[3],