From 7770190f55e01468f0de6e5524f059de4ef93cb6 Mon Sep 17 00:00:00 2001 From: Mat931 <49403702+Mat931@users.noreply.github.com> Date: Sun, 26 Apr 2026 20:50:07 +0200 Subject: [PATCH] Use shorter warning message to save memory --- esphome/components/wifi/wifi_component_esp_idf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/wifi/wifi_component_esp_idf.cpp b/esphome/components/wifi/wifi_component_esp_idf.cpp index d91bc4ae6e..82ecc80811 100644 --- a/esphome/components/wifi/wifi_component_esp_idf.cpp +++ b/esphome/components/wifi/wifi_component_esp_idf.cpp @@ -180,7 +180,7 @@ void WiFiComponent::wifi_pre_setup_() { wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); if (global_preferences->nvs_handle == 0) { - ESP_LOGW(TAG, "NVS failed to initialize, starting WiFi with NVS disabled"); + ESP_LOGW(TAG, "starting wifi without nvs"); cfg.nvs_enable = false; } err = esp_wifi_init(&cfg);