Eliminate logging of every CTRL -> HOST packet
This commit is contained in:
parent
9ee8b2dd22
commit
90805d61d9
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue