From 90392e823f419723d2bdc48e6dba951144eff420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <5415177+ZehMatt@users.noreply.github.com> Date: Wed, 23 Apr 2025 21:06:22 +0300 Subject: [PATCH] Set the download message logging to high --- openrct2.deps.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openrct2.deps.targets b/openrct2.deps.targets index 7cf0394019..669b82533f 100644 --- a/openrct2.deps.targets +++ b/openrct2.deps.targets @@ -40,7 +40,7 @@ try { // Download the file - Log.LogMessage(MessageImportance.Normal, String.Format("Downloading '{0}'.", Url)); + Log.LogMessage(MessageImportance.High, String.Format("Downloading '{0}'.", Url)); var client = new WebClient(); client.DownloadFile(Url, tempFile); @@ -53,7 +53,7 @@ } // Extract contents - Log.LogMessage(MessageImportance.Normal, String.Format("Extracting to '{0}'.", OutputDirectory)); + Log.LogMessage(MessageImportance.High, String.Format("Extracting to '{0}'.", OutputDirectory)); if (!Directory.Exists(OutputDirectory)) { Directory.CreateDirectory(OutputDirectory);