Skip to content

Commit 116c4a9

Browse files
stsai666dkalowsk
authored andcommitted
Bluetooth: host: adv: revert 39cb574 to fix spurious error log
Commit 39cb574 changed the log level from LOG_DBG to LOG_ERR in bt_le_adv_resume(). This causes the error log "No valid legacy adv to resume" to appear during normal connection establishment when using bt_le_ext_adv_start(), even though the system is functioning correctly. Revert the change to restore the original LOG_DBG level. Fixes: #94954 Signed-off-by: Samuel Tsai <[email protected]> (cherry picked from commit 07dc0ad)
1 parent 46292d7 commit 116c4a9

File tree

1 file changed

+1
-1
lines changed
  • subsys/bluetooth/host

1 file changed

+1
-1
lines changed

subsys/bluetooth/host/adv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,7 @@ void bt_le_adv_resume(void)
15291529
int err;
15301530

15311531
if (!adv) {
1532-
LOG_ERR("No valid legacy adv to resume");
1532+
LOG_DBG("No valid legacy adv to resume");
15331533
return;
15341534
}
15351535

0 commit comments

Comments
 (0)