Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: ISO: Tone down some dbg logs #75430

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions subsys/bluetooth/host/iso.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,15 +757,15 @@ static struct net_buf *iso_data_pull(struct bt_conn *conn,
size_t *length)
{
#if defined(CONFIG_BT_ISO_TX)
LOG_DBG("conn %p amount %d", conn, amount);
BT_ISO_DATA_DBG("conn %p amount %d", conn, amount);

/* Leave the PDU buffer in the queue until we have sent all its
* fragments.
*/
struct net_buf *frag = k_fifo_peek_head(&conn->iso.txq);

if (!frag) {
LOG_DBG("signaled ready but no frag available");
BT_ISO_DATA_DBG("signaled ready but no frag available");
/* Service other connections */
bt_tx_irq_raise();

Expand Down Expand Up @@ -797,7 +797,7 @@ static struct net_buf *iso_data_pull(struct bt_conn *conn,
if (last_frag) {
__maybe_unused struct net_buf *b = k_fifo_get(&conn->iso.txq, K_NO_WAIT);

LOG_DBG("last frag, pop buf");
BT_ISO_DATA_DBG("last frag, pop buf");
__ASSERT_NO_MSG(b == frag);
}

Expand Down Expand Up @@ -846,7 +846,7 @@ int conn_iso_send(struct bt_conn *conn, struct net_buf *buf, enum bt_iso_timesta
net_buf_push_u8(buf, has_ts);

net_buf_put(&conn->iso.txq, buf);
LOG_DBG("%p put on list", buf);
BT_ISO_DATA_DBG("%p put on list", buf);

/* only one ISO channel per conn-object */
bt_conn_data_ready(conn);
Expand Down Expand Up @@ -914,7 +914,7 @@ int bt_iso_chan_send(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t seq

iso_conn = chan->iso;

LOG_DBG("send-iso (no ts)");
BT_ISO_DATA_DBG("send-iso (no ts)");
return conn_iso_send(iso_conn, buf, BT_ISO_TS_ABSENT);
}

Expand Down
Loading