From 5fdb828b60671e11a6742d4f2878b30e29f574ea Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Sun, 8 Oct 2017 19:03:49 +0200 Subject: [PATCH] Log which maps are processed by UpgradeModCommand Upgrading the maps can take quite some time, and at the moment you are left without information if something is happening. --- OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs b/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs index c020ab3231..22d1a9a3b0 100644 --- a/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs +++ b/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs @@ -81,6 +81,7 @@ namespace OpenRA.Mods.Common.UtilityCommands { try { + Console.WriteLine(map.Package.Name); UpgradeMapCommand.UpgradeMap(modData, (IReadWritePackage)map.Package, engineDate); } catch (Exception e)