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
|
try
|
||||||
{
|
{
|
||||||
// Download the file
|
// 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();
|
var client = new WebClient();
|
||||||
client.DownloadFile(Url, tempFile);
|
client.DownloadFile(Url, tempFile);
|
||||||
|
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Extract contents
|
// 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))
|
if (!Directory.Exists(OutputDirectory))
|
||||||
{
|
{
|
||||||
Directory.CreateDirectory(OutputDirectory);
|
Directory.CreateDirectory(OutputDirectory);
|
||||||
|
|||||||
Reference in New Issue
Block a user