From 6e436998efacc432acba6cb370d0a28333baab66 Mon Sep 17 00:00:00 2001 From: Andy Baker Date: Tue, 9 Jul 2024 17:08:41 +0100 Subject: [PATCH] Remove debug log --- .../Runtime/Internal/api_clients/poly_client/PolyClient.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs index 3ac293b..8f476ff 100644 --- a/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs +++ b/Packages/icosa-api-client-unity/Runtime/Internal/api_clients/poly_client/PolyClient.cs @@ -446,7 +446,6 @@ private static string GetBaseUrl() /// Forms a GET request from a HTTP path. /// public UnityWebRequest GetRequest(string path, string contentType) { - Debug.Log($"GET: {path}"); // The default constructor for a UnityWebRequest gives a GET request. UnityWebRequest request = new UnityWebRequest(path); request.SetRequestHeader("Content-type", contentType);