Skip to content

Commit 42473d8

Browse files
committed
Turning off console debugging
1 parent d32aa63 commit 42473d8

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/PipelinesTestLogger/ApiClient.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public async Task<JsonObject> PostAsync(string json, CancellationToken cancellat
3030
{
3131
HttpContent content = new StringContent(json, Encoding.UTF8, "application/json");
3232
string requestUri = $"{ _baseUrl }{ endpoint }?api-version={ ApiVersion }";
33-
Console.WriteLine("POST" + Environment.NewLine + requestUri + Environment.NewLine + json);
3433
HttpResponseMessage response = await _client.PostAsync(requestUri, content, cancellationToken);
3534
response.EnsureSuccessStatusCode();
3635
string responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);

0 commit comments

Comments
 (0)