diff --git a/ESPixelStick/src/FileMgr.cpp b/ESPixelStick/src/FileMgr.cpp index e40559406..f7755dbc4 100644 --- a/ESPixelStick/src/FileMgr.cpp +++ b/ESPixelStick/src/FileMgr.cpp @@ -839,7 +839,7 @@ void c_FileMgr::GetListOfSdFiles (String & Response, uint32_t FirstFileToSend) if (!entry) { - DEBUG_V("no more files to add to list"); + // DEBUG_V("no more files to add to list"); ResponseJsonDoc[F("final")] = true; break; } @@ -869,7 +869,7 @@ void c_FileMgr::GetListOfSdFiles (String & Response, uint32_t FirstFileToSend) uint32_t availableSpace = capacity - usedSpace; if(neededMemory >= availableSpace) { - DEBUG_V("No more file names will fit in the list"); + // DEBUG_V("No more file names will fit in the list"); entry.close (); break; } diff --git a/ESPixelStick/src/WebMgr.cpp b/ESPixelStick/src/WebMgr.cpp index c74cb7421..2af2435d2 100644 --- a/ESPixelStick/src/WebMgr.cpp +++ b/ESPixelStick/src/WebMgr.cpp @@ -250,9 +250,9 @@ void c_WebMgr::init () } else { - DEBUG_V(String("URL: ") + request->url ()); + // DEBUG_V(String("URL: ") + request->url ()); uint32_t StartingFileIndex = request->url ().substring(String(F("/files/")).length()).toInt(); - DEBUG_V(String("StartingFileIndex: ") + StartingFileIndex); + // DEBUG_V(String("StartingFileIndex: ") + StartingFileIndex); String Response; FileMgr.GetListOfSdFiles(Response, StartingFileIndex);