Skip to content

Commit

Permalink
Turning off console debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Dec 12, 2018
1 parent d32aa63 commit 42473d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/PipelinesTestLogger/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public async Task<JsonObject> PostAsync(string json, CancellationToken cancellat
{
HttpContent content = new StringContent(json, Encoding.UTF8, "application/json");
string requestUri = $"{ _baseUrl }{ endpoint }?api-version={ ApiVersion }";
Console.WriteLine("POST" + Environment.NewLine + requestUri + Environment.NewLine + json);
HttpResponseMessage response = await _client.PostAsync(requestUri, content, cancellationToken);
response.EnsureSuccessStatusCode();
string responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Expand Down

0 comments on commit 42473d8

Please sign in to comment.