This commit is contained in:
J. Nick Koston 2025-06-29 18:53:43 -05:00
parent 4d460d4bc3
commit bcbf0f0e26
No known key found for this signature in database
3 changed files with 1 additions and 8 deletions

View File

@ -2087,7 +2087,7 @@ void WebServer::handleRequest(AsyncWebServerRequest *request) {
#endif
// No matching handler found - send 404
ESP_LOGD(TAG, "Request for unknown URL: %s", request->url().c_str());
ESP_LOGV(TAG, "Request for unknown URL: %s", request->url().c_str());
request->send(404, "text/plain", "Not Found");
}

View File

@ -4,11 +4,6 @@
#include "esphome/core/helpers.h"
#include "esphome/core/log.h"
#ifdef USE_ESP_IDF
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#endif
#ifdef USE_ARDUINO
#include <StreamString.h>
#if defined(USE_ESP32) || defined(USE_LIBRETINY)

View File

@ -7,8 +7,6 @@
#include "esphome/core/log.h"
#include "esp_tls_crypto.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "utils.h"
#include "web_server_idf.h"