From 86b28d1af785fa17d0e5c11928f24200f3a27968 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Wed, 14 Aug 2024 08:44:07 +0200 Subject: [PATCH] GameModelImporter - Update Debug message in 'TraverseChildren' --- PCK-Studio/Internal/GameModelImporter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PCK-Studio/Internal/GameModelImporter.cs b/PCK-Studio/Internal/GameModelImporter.cs index 3643cba6..83409789 100644 --- a/PCK-Studio/Internal/GameModelImporter.cs +++ b/PCK-Studio/Internal/GameModelImporter.cs @@ -102,7 +102,7 @@ namespace PckStudio.Internal { if (!outliners.ContainsKey(item.Key)) { - Debug.WriteLine($"{item.Key} not in {nameof(outliners)}."); + Debug.WriteLine($"{nameof(item.Key)}: '{item.Key}' not in {nameof(outliners)}."); continue; } Outline partentOutline = outliners[item.Key]; @@ -121,7 +121,7 @@ namespace PckStudio.Internal { if (!outliners.ContainsKey(key)) { - Debug.WriteLine($"{key} not in {nameof(outliners)}."); + Debug.WriteLine($"{nameof(key)}: '{key}' not in {nameof(outliners)}."); continue; } childOutline = outliners[key];