🧞‍♂️ Adds logging of the AP name

This commit is contained in:
Rune Harlyk
2024-08-19 22:10:31 +02:00
parent 2c5ac4dc5c
commit b9f24d9f4c
@@ -66,7 +66,7 @@ void APSettingsService::manageAP() {
}
void APSettingsService::startAP() {
ESP_LOGI(TAG, "Starting software access point");
ESP_LOGI(TAG, "Starting software access point: %s", _state.ssid.c_str());
WiFi.softAPConfig(_state.localIP, _state.gatewayIP, _state.subnetMask);
WiFi.softAP(_state.ssid.c_str(), _state.password.c_str(), _state.channel, _state.ssidHidden, _state.maxClients);
#if CONFIG_IDF_TARGET_ESP32C3