Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.

Commit e21ad7b

Browse files
committed
Minor logging changes
1 parent c7b93ba commit e21ad7b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ClientUpdater/Updater.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1250,6 +1250,8 @@ private static async Task PerformUpdateAsync()
12501250

12511251
if (updaterResourcesDirectory.Exists)
12521252
{
1253+
Logger.Log("Updater: Checking & moving second-stage updater files.");
1254+
12531255
IEnumerable<FileInfo> updaterFiles = updaterResourcesDirectory.EnumerateFiles(Path.GetFileNameWithoutExtension(SECOND_STAGE_UPDATER) + ".*");
12541256

12551257
foreach (FileInfo updaterFile in updaterFiles)
@@ -1278,7 +1280,7 @@ private static async Task PerformUpdateAsync()
12781280
}
12791281
}
12801282

1281-
Logger.Log("Updater: Launching second-stage updater executable " + SECOND_STAGE_UPDATER + ".");
1283+
Logger.Log("Updater: Launching second-stage updater executable " + secondStageUpdaterResource.FullName + ".");
12821284

12831285
// e.g. dotnet "C:\Game\Resources\SecondStageUpdater.dll" clientogl.dll "C:\Game\"
12841286
using var _ = Process.Start(new ProcessStartInfo

0 commit comments

Comments
 (0)