diff --git a/Editor/Scripts/Graph/ARFGraphView.cs b/Editor/Scripts/Graph/ARFGraphView.cs
index 196eaa4abd45aaca0ab6b6af543eec02d9558bb0..e81b95467ceba497663465851ab6e9202a4ca593 100644
--- a/Editor/Scripts/Graph/ARFGraphView.cs
+++ b/Editor/Scripts/Graph/ARFGraphView.cs
@@ -332,9 +332,7 @@ namespace ETSI.ARF.WorldStorage.UI
             List<WorldLink> 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<ARFEdgeLink>(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 c844cb423ec91e12a0ad82dbab69b510ae1ae80c..02a81dbb30f139d615e6102e8b935db65c771375 100644
--- a/Editor/Scripts/Windows/WorldGraphWindow.cs
+++ b/Editor/Scripts/Windows/WorldGraphWindow.cs
@@ -259,7 +259,6 @@ namespace ETSI.ARF.WorldStorage.Editor.Windows
             }
 
             List<WorldAnchor> listA = WorldAnchorRequest.GetWorldAnchorsSync(worldStorageServer);
-            Debug.Log("Anchors " +listA.Count);
             foreach (WorldAnchor wa in listA)
             {
                 if (wa.KeyvalueTags.ContainsKey("unityAuthoringPosX") && wa.KeyvalueTags.ContainsKey("unityAuthoringPosY"))