1
0
Fork 0

Eliminate logging of every CTRL -> HOST packet

This commit is contained in:
Shawn Nock 2019-07-16 13:18:51 -04:00
parent 9ee8b2dd22
commit 90805d61d9
1 changed files with 1 additions and 1 deletions

View File

@ -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");