chore: clarify deferred reconnect fallback log

Co-authored-by: 78 <4488133+78@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-10 13:06:13 +00:00
co-authored by 78
parent 65ffda6341
commit c10757defe
+1 -1
View File
@@ -149,7 +149,7 @@ void WifiBoard::OnNetworkEvent(NetworkEvent event, const std::string& data) {
// Defer reconnect until config AP teardown has fully completed.
esp_timer_stop(config_exit_timer_);
if (esp_timer_start_once(config_exit_timer_, CONFIG_EXIT_RECONNECT_DELAY_US) != ESP_OK) {
ESP_LOGW(TAG, "Failed to schedule deferred WiFi reconnect, retrying immediately");
ESP_LOGW(TAG, "Failed to schedule deferred WiFi reconnect, attempting immediate connection");
TryWifiConnect();
}
break;