Skip to content

Commit 482416d

Browse files
aescolarMaureenHelm
authored andcommitted
tests/bsim bis: Reduce the test verbosity
The test was printing one line for each packet it was sending by default. That creates a huge log and slows things down. Instead, let's only print those with verbosity set at 4 or higher. Signed-off-by: Alberto Escolar Piedras <[email protected]>
1 parent 464435e commit 482416d

File tree

1 file changed

+1
-1
lines changed
  • tests/bsim/bluetooth/ll/bis/src

1 file changed

+1
-1
lines changed

tests/bsim/bluetooth/ll/bis/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ static void iso_send(struct k_work *work)
183183
iso_data_len = MAX(sizeof(seq_num), ((seq_num % CONFIG_BT_ISO_TX_MTU) + 1));
184184
net_buf_add_mem(buf, iso_data, iso_data_len);
185185

186-
printk("ISO send: seq_num %u\n", seq_num);
186+
bs_trace_info_time(4, "ISO send: seq_num %u\n", seq_num);
187187
ret = bt_iso_chan_send(&bis_iso_chan, buf, seq_num++,
188188
BT_ISO_TIMESTAMP_NONE);
189189
if (ret < 0) {

0 commit comments

Comments
 (0)