From 7b7d6802e284b9e1da575050c3e5912f6df21326 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Fri, 10 Jul 2026 11:09:26 -0400 Subject: [PATCH] Add TestPair ID to GetPair logging If a test pair dies during cleanup, this saves a bit of hassle trying to figure out which pair had the problem without having to dig through the gravestones. --- Robust.UnitTesting/Pool/PoolManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robust.UnitTesting/Pool/PoolManager.cs b/Robust.UnitTesting/Pool/PoolManager.cs index 9b31a41c66a..4b756bdefa0 100644 --- a/Robust.UnitTesting/Pool/PoolManager.cs +++ b/Robust.UnitTesting/Pool/PoolManager.cs @@ -180,7 +180,7 @@ await testOut.WriteLineAsync( if (pair != null) { pair.ActivateContext(testOut); - await testOut.WriteLineAsync($"{nameof(GetPair)}: Suitable pair found"); + await testOut.WriteLineAsync($"{nameof(GetPair)}: Suitable pair found (Pair {pair.Id})"); if (pair.Settings.CanFastRecycle(settings)) {