From 7d913d0689e3a1b0b6610286021e3f04d7af5845 Mon Sep 17 00:00:00 2001 From: jlacoche Date: Mon, 29 Jul 2024 11:30:29 +0200 Subject: [PATCH] Remove logs --- Editor/Scripts/Graph/ARFGraphView.cs | 2 -- Editor/Scripts/Windows/WorldGraphWindow.cs | 1 - 2 files changed, 3 deletions(-) diff --git a/Editor/Scripts/Graph/ARFGraphView.cs b/Editor/Scripts/Graph/ARFGraphView.cs index 196eaa4..e81b954 100644 --- a/Editor/Scripts/Graph/ARFGraphView.cs +++ b/Editor/Scripts/Graph/ARFGraphView.cs @@ -332,9 +332,7 @@ namespace ETSI.ARF.WorldStorage.UI List worldLinks = WorldLinkRequest.GetWorldLinksSync(worldStorageServer); foreach (WorldLink worldLink in worldLinks) { - Debug.Log("ports"); var portPair = GetPortsFromWorldLink(worldLink); - Debug.Log("edge " + (portPair.Key == null)+ " " + (portPair.Value == null)); ARFEdgeLink edge = portPair.Key.ConnectTo(portPair.Value); edge.worldLink = worldLink; edge.GUID = worldLink.UUID.ToString(); diff --git a/Editor/Scripts/Windows/WorldGraphWindow.cs b/Editor/Scripts/Windows/WorldGraphWindow.cs index c844cb4..02a81db 100644 --- a/Editor/Scripts/Windows/WorldGraphWindow.cs +++ b/Editor/Scripts/Windows/WorldGraphWindow.cs @@ -259,7 +259,6 @@ namespace ETSI.ARF.WorldStorage.Editor.Windows } List listA = WorldAnchorRequest.GetWorldAnchorsSync(worldStorageServer); - Debug.Log("Anchors " +listA.Count); foreach (WorldAnchor wa in listA) { if (wa.KeyvalueTags.ContainsKey("unityAuthoringPosX") && wa.KeyvalueTags.ContainsKey("unityAuthoringPosY")) -- GitLab