From e0fa63ae197a555364655789f63e40370e9306bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Wed, 14 Oct 2015 20:34:20 +0200 Subject: [PATCH] also mention the movement class of the domain index in logs --- OpenRA.Mods.Common/Traits/World/DomainIndex.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } }