refactor: removed some output message

This commit is contained in:
2021-11-14 10:39:23 +01:00
parent 935a514fb5
commit 74ce17a007

View File

@@ -19,6 +19,7 @@ bool Updater::checkUpdate() {
httplib::Client client("thesims.freeboxos.fr", 30000); httplib::Client client("thesims.freeboxos.fr", 30000);
if (auto res = client.Head(newFileUrl.c_str())) { if (auto res = client.Head(newFileUrl.c_str())) {
std::uint32_t distantFileSize = std::stol(res.value().get_header_value("Content-Length")); std::uint32_t distantFileSize = std::stol(res.value().get_header_value("Content-Length"));
std::uint32_t localFileSize = getLocalFileSize(); std::uint32_t localFileSize = getLocalFileSize();
@@ -71,7 +72,6 @@ std::string Updater::getLocalFilePath() {
GetModuleFileName(nullptr, filePathBuffer, sizeof(filePathBuffer)); GetModuleFileName(nullptr, filePathBuffer, sizeof(filePathBuffer));
std::string filePath = filePathBuffer; std::string filePath = filePathBuffer;
std::cout << filePath << std::endl;
return filePath; return filePath;
#endif #endif
return ""; return "";
@@ -111,8 +111,6 @@ void Updater::removeOldFile(){
bool Updater::writeFile() { bool Updater::writeFile() {
if (m_FileWrited || !m_DownloadComplete) return false; if (m_FileWrited || !m_DownloadComplete) return false;
std::cout << m_FileBuffer.GetSize() << std::endl;
if(!m_FileBuffer.WriteFile(getLocalFilePath() + "_recent")) if(!m_FileBuffer.WriteFile(getLocalFilePath() + "_recent"))
return false; return false;