removed SDK logs

This commit is contained in:
Patrick Haßel 2025-08-29 09:55:21 +02:00
parent 9b7765c768
commit d6643a446e
2 changed files with 4 additions and 1 deletions

View File

@ -16,4 +16,4 @@ upload_speed = 921600
monitor_speed = 115200 monitor_speed = 115200
build.filesystem = littlefs build.filesystem = littlefs
lib_deps = bblanchon/ArduinoJson @ 7.4.2 lib_deps = bblanchon/ArduinoJson @ 7.4.2
build_flags = -D STATUS_PIN=2 -D STATUS_INVERT=false build_flags = -D STATUS_PIN=2 -D STATUS_INVERT=false -D CORE_DEBUG_LEVEL=0

View File

@ -82,6 +82,9 @@ void wifiChangePassword(const char *password) {
} }
void wifiSetup() { void wifiSetup() {
#ifdef ESP32
esp_log_level_set("wifi", ESP_LOG_NONE);
#endif
ArduinoOTA.onStart([] { ArduinoOTA.onStart([] {
Serial.println("[OTA] Begin!"); Serial.println("[OTA] Begin!");
status.set(true); status.set(true);