From 22ea36c1146a8cef65a6fe0c3b7f9b94a15d1ded Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tobias=20Sch=C3=B6ner?= <tobias.stonehead@gmail.com>
Date: Sat, 28 Jan 2023 14:15:48 +0100
Subject: [PATCH] refactor: comment debug output

---
 Assets/Scripts/UI/FactExplorer/FactExplorer.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Assets/Scripts/UI/FactExplorer/FactExplorer.cs b/Assets/Scripts/UI/FactExplorer/FactExplorer.cs
index f47cbf1e..c23cdad9 100644
--- a/Assets/Scripts/UI/FactExplorer/FactExplorer.cs
+++ b/Assets/Scripts/UI/FactExplorer/FactExplorer.cs
@@ -39,8 +39,8 @@ public void Initialize(Fact fact, Vector3 factPosition)
         parentFacts = GetParentFacts();
         childFacts = GetChildFacts();
 
-        Debug.Log($"Parents of {mainFact.Label}:  {string.Join(", ", parentFacts.Select(cf => cf.Label))}");
-        Debug.Log($"Children of {mainFact.Label}: {string.Join(", ", childFacts.Select(cf => cf.Label))}");
+        //Debug.Log($"Parents of {mainFact.Label}:  {string.Join(", ", parentFacts.Select(cf => cf.Label))}");
+        //Debug.Log($"Children of {mainFact.Label}: {string.Join(", ", childFacts.Select(cf => cf.Label))}");
 
         UpdateFactExplorerUI();
 
-- 
GitLab