From 9d1e68e45d9fad1b8c2a8005725a1c95ffc3f458 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 1 Jul 2025 15:42:28 -0500 Subject: [PATCH] Apply suggestions from code review --- esphome/components/web_server/ota/ota_web_server.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/esphome/components/web_server/ota/ota_web_server.cpp b/esphome/components/web_server/ota/ota_web_server.cpp index 0235262e52..b5c80a0fe6 100644 --- a/esphome/components/web_server/ota/ota_web_server.cpp +++ b/esphome/components/web_server/ota/ota_web_server.cpp @@ -192,12 +192,10 @@ void WebServerOTAComponent::setup() { // Register with global OTA callback system ota::register_ota_platform(this); #endif - ESP_LOGCONFIG(TAG, "Web Server OTA initialized"); } void WebServerOTAComponent::dump_config() { - ESP_LOGCONFIG(TAG, "Web Server OTA:"); - ESP_LOGCONFIG(TAG, " Available at /update"); + ESP_LOGCONFIG(TAG, "Web Server OTA"); } } // namespace web_server