Browse Source

updater: Remove non-error logging from multithreaded code

derrod 2 years ago
parent
commit
aed8e2384d
1 changed files with 2 additions and 7 deletions
  1. 2 7
      UI/win-update/updater/updater.cpp

+ 2 - 7
UI/win-update/updater/updater.cpp

@@ -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;