diff --git a/OpenRA.Mods.Common/Traits/World/DomainIndex.cs b/OpenRA.Mods.Common/Traits/World/DomainIndex.cs index 4cc34717e9..aa585e053f 100644 --- a/OpenRA.Mods.Common/Traits/World/DomainIndex.cs +++ b/OpenRA.Mods.Common/Traits/World/DomainIndex.cs @@ -63,7 +63,7 @@ namespace OpenRA.Mods.Common.Traits domains = new CellLayer(world.Map); transientConnections = new Dictionary>(); - using (new PerfTimer("BuildDomains: {0}".F(world.Map.Title))) + using (new PerfTimer("BuildDomains: {0} for movement class {1}".F(world.Map.Title, movementClass))) BuildDomains(world); } @@ -216,7 +216,7 @@ namespace OpenRA.Mods.Common.Traits domain += 1; } - Log.Write("debug", "Found {0} domains on map {1}.", domain - 1, map.Title); + Log.Write("debug", "Found {0} domains for movement class {1} on map {2}.", domain - 1, movementClass, map.Title); } } }