Skip to content

Commit

Permalink
Turned off debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMueller2003 committed Dec 8, 2023
1 parent 7f7b524 commit 3128d2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ESPixelStick/src/FileMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}
Expand Down
4 changes: 2 additions & 2 deletions ESPixelStick/src/WebMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3128d2f

Please sign in to comment.