Skip to content

Commit 07dc0ad

Browse files
stsai666henrikbrixandersen
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]>
1 parent 06dfa99 commit 07dc0ad

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
@@ -1416,7 +1416,7 @@ void bt_le_adv_resume(void)
14161416
int err;
14171417

14181418
if (!adv) {
1419-
LOG_ERR("No valid legacy adv to resume");
1419+
LOG_DBG("No valid legacy adv to resume");
14201420
return;
14211421
}
14221422

0 commit comments

Comments
 (0)