Skip to content

Commit 04a1551

Browse files
Thalleykartben
authored andcommitted
Bluetooth: ASCS: Use LOG_DBG when failing to alloc buffer for notification
Since there is a retry mechanism implement, this is not something that the user needs to be warned about. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
1 parent d3ffdf4 commit 04a1551

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

subsys/bluetooth/audio/ascs.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,9 @@ static void state_transition_work_handler(struct k_work *work)
543543
/* Reschedule the state transition */
544544
err = k_work_reschedule(d_work, K_MSEC(retry_delay_ms));
545545
if (err >= 0) {
546-
LOG_WRN("Out of buffers for ase state notification. "
547-
"Will retry in %dms", retry_delay_ms);
546+
LOG_DBG("Out of buffers for ase state notification. "
547+
"Will retry in %dms",
548+
retry_delay_ms);
548549
return;
549550
}
550551
}

0 commit comments

Comments
 (0)