reduce debug noise on serial

downgraded a few USER_PRINT to DEBUG_PRINT
This commit is contained in:
Frank
2025-11-30 01:22:34 +01:00
parent e17e67f02d
commit 15451c16f9
3 changed files with 8 additions and 7 deletions

View File

@@ -390,13 +390,13 @@ void initServer()
});
#endif
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
USER_PRINT("Client request"); //WLEDMM: want to see if client connects to wled
DEBUG_PRINT("Client request"); //WLEDMM: want to see if client connects to wled
#ifdef ARDUINO_ARCH_ESP32
DEBUG_PRINTF("%s min free stack %d\n", pcTaskGetTaskName(NULL), uxTaskGetStackHighWaterMark(NULL)); //WLEDMM
#endif
if (captivePortal(request)) return;
serveIndexOrWelcome(request);
USER_PRINTLN(" done"); //WLEDMM: want to see if client connects to wled
DEBUG_PRINTLN(" done"); //WLEDMM: want to see if client connects to wled
});
#ifdef WLED_ENABLE_PIXART