This commit is contained in:
Ewoud
2023-03-22 16:39:45 +01:00
parent d452da2642
commit 8509205c19
2 changed files with 2 additions and 2 deletions

View File

@@ -363,7 +363,7 @@ void initServer()
});
#endif
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
USER_PRINTF("%s Client request %s\n", serverDescription, request->url()); //WLEDMM: want to see if client connects to wled, for netdebug also wants to know server
USER_PRINTF("%s Client request %s\n", serverDescription, request->url().c_str()); //WLEDMM: want to see if client connects to wled, for netdebug also wants to know server
if (captivePortal(request)) return;
serveIndexOrWelcome(request);
});