Skip to content

Commit

Permalink
Removed redundant Debug.Log
Browse files Browse the repository at this point in the history
  • Loading branch information
gmakoudi committed Aug 20, 2018
1 parent 00c9fcb commit d6531da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,9 @@ private async Task SendHttpWebRequest(HttpRequestMessage request)
{
if (!WebHeaderCollection.IsRestricted(header.Key) && header.Value != null && header.Value.Count() != 0)
{
foreach (var value in header.Value)
{
Debug.Log("Key " + header.Key + " value "+ value);
}
client.Headers.Add(header.Key, header.Value.FirstOrDefault());
}
}
Debug.Log("END OF HEADERS");
}

#if !UNITY_WSA
Expand Down
4 changes: 4 additions & 0 deletions UnityPackageManager/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"dependencies": {
}
}

0 comments on commit d6531da

Please sign in to comment.