From 90805d61d9935d19e28990a96afe45a79e89b297 Mon Sep 17 00:00:00 2001 From: Shawn Nock Date: Tue, 16 Jul 2019 13:18:51 -0400 Subject: [PATCH] Eliminate logging of every CTRL -> HOST packet --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 6b45ee9..b8f4d14 100644 --- a/src/main.c +++ b/src/main.c @@ -747,7 +747,7 @@ static linkstate_t do_active(struct net_buf const *buf) { // Presumably something from the controller u8_t type = bt_buf_get_type(buf); if (type == BT_BUF_EVT) { - LOG_HEXDUMP_DBG(buf->data, buf->len, "CTRL -> HOST"); + //LOG_HEXDUMP_DBG(buf->data, buf->len, "CTRL -> HOST"); h5_send(buf->data, HCI_EVENT_PKT, buf->len); } else { LOG_HEXDUMP_ERR(buf->data, buf->len, "Unexpected buffer in host_queue");