From f0b8ff2d24218c10dbcdff6bc6acc1a292ecbd46 Mon Sep 17 00:00:00 2001 From: Shawn Nock Date: Tue, 16 Jul 2019 16:00:46 -0400 Subject: [PATCH] Removes logging of every packet to host (too much noise) --- src/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.c b/src/main.c index abe0755..b0cb1e4 100644 --- a/src/main.c +++ b/src/main.c @@ -783,7 +783,6 @@ static linkstate_t do_active(struct net_buf *buf) { default: // Presumably something from the controller if (bt_buf_get_type(buf) == BT_BUF_EVT) { - LOG_DBG("RX'd CONTROLLER EVENT: ACTIVE -> ACTIVE"); h5_send(buf->data, HCI_EVENT_PKT, buf->len); } else { LOG_HEXDUMP_ERR(buf->data, buf->len, "Unexpected buffer in host_queue");