mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 01:22:25 +01:00
Set the download message logging to high
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user