diff --git a/esphome/components/web_server_base/web_server_base.cpp b/esphome/components/web_server_base/web_server_base.cpp index 765fcbc5bc..cad3ce5386 100644 --- a/esphome/components/web_server_base/web_server_base.cpp +++ b/esphome/components/web_server_base/web_server_base.cpp @@ -203,7 +203,6 @@ void OTARequestHandler::handleRequest(AsyncWebServerRequest *request) { // 2. The server is shutting down and can't process new requests // These warnings are harmless and expected during OTA reboot. if (this->ota_success_) { - ESP_LOGV(TAG, "Sending OTA success response before reboot"); request->send(200, "text/plain", "Update Successful!"); } else { request->send(200, "text/plain", "Update Failed!");