0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

updater: Remove non-error logging from multithreaded code

This commit is contained in:
derrod 2023-09-02 20:09:54 +02:00 committed by Ryan Foster
parent 87dd366448
commit aed8e2384d

View File

@ -445,8 +445,6 @@ bool DownloadWorkerThread()
return false;
}
Status(L"Downloading %s", update.outputPath.c_str());
auto &buf = download_data[update.downloadHash];
/* Reserve required memory */
buf.reserve(update.fileSize);
@ -930,11 +928,6 @@ static bool UpdateFile(ZSTD_DCtx *ctx, update_t &file)
{
wchar_t oldFileRenamedPath[MAX_PATH];
if (file.patchable)
Status(L"Updating %s...", file.outputPath.c_str());
else
Status(L"Installing %s...", file.outputPath.c_str());
/* Grab the patch/file data from the global cache. */
vector<std::byte> &patch_data = download_data[file.downloadHash];
@ -1625,6 +1618,7 @@ static bool Update(wchar_t *cmdLine)
/* ------------------------------------- *
* Download Updates */
Status(L"Downloading updates...");
if (!RunDownloadWorkers(4))
return false;
@ -1638,6 +1632,7 @@ static bool Update(wchar_t *cmdLine)
SendDlgItemMessage(hwndMain, IDC_PROGRESS, PBM_SETPOS, 0, 0);
Status(L"Installing updates...");
if (!RunUpdateWorkers(4))
return false;