From 450cbeea96d4bd865c70ea5bb69c93a7c8f1f9ae Mon Sep 17 00:00:00 2001 From: Pavel Penev Date: Tue, 28 Nov 2017 02:31:18 +0200 Subject: [PATCH] Added an extra bit of installer data to Install.log --- .../Widgets/Logic/Installation/InstallFromDiscLogic.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Mods.Common/Widgets/Logic/Installation/InstallFromDiscLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Installation/InstallFromDiscLogic.cs index 971b37afb2..c86b599c80 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Installation/InstallFromDiscLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Installation/InstallFromDiscLogic.cs @@ -127,6 +127,8 @@ namespace OpenRA.Mods.Common.Widgets.Logic var path = FindSourcePath(kv.Value, volumes); if (path != null) { + Log.Write("install", "Using installer `{0}: {1}` of type `{2}`:", kv.Key, kv.Value.Title, kv.Value.Type); + var packages = content.Packages.Values .Where(p => p.Sources.Contains(kv.Key) && !p.IsInstalled()) .Select(p => p.Title);