Code cleanup

This commit is contained in:
2025-12-16 18:23:21 -05:00
parent 5c5f4d7d8f
commit 6d87851117
3 changed files with 5 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ bool ClientSocketSender::sendFile(String &pathFileName)
sendPutIndicator(pathFileName, fileLength);
Array<char> readBuffer;
readBuffer.size(BUFFER_LENGTH);
std::cout << "Sending file " << pathFileName << Utility::byteCountToString(fileLength, false) << std::endl;
std::cout << "Sending file " << pathFileName << " " << Utility::byteCountToString(fileLength, false) << std::endl;
while(true)
{
size_t bytesRead = readFile.read(&readBuffer[0], readBuffer.size());