diff --git a/subsys/bluetooth/host/iso.c b/subsys/bluetooth/host/iso.c index a4f30a3ba0dbf..e123f42b83bef 100644 --- a/subsys/bluetooth/host/iso.c +++ b/subsys/bluetooth/host/iso.c @@ -967,7 +967,6 @@ int bt_iso_chan_send(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t seq iso_conn = chan->iso; - BT_ISO_DATA_DBG("send-iso (no ts)"); return conn_iso_send(iso_conn, buf, BT_ISO_TS_ABSENT); } @@ -983,7 +982,7 @@ int bt_iso_chan_send_ts(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t return err; } - BT_ISO_DATA_DBG("chan %p len %zu", chan, net_buf_frags_len(buf)); + BT_ISO_DATA_DBG("chan %p len %zu ts %u", chan, net_buf_frags_len(buf), ts); hdr = net_buf_push(buf, sizeof(*hdr)); hdr->ts = sys_cpu_to_le32(ts); @@ -993,7 +992,6 @@ int bt_iso_chan_send_ts(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t iso_conn = chan->iso; - LOG_DBG("send-iso (ts)"); return conn_iso_send(iso_conn, buf, BT_ISO_TS_PRESENT); }