We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9f840 commit b8e5002Copy full SHA for b8e5002
actions/sequester/Quest2GitHub/AzDoClientServices/QuestClient.cs
@@ -156,6 +156,10 @@ static async Task<JsonElement> HandleResponseAsync(HttpResponseMessage response)
156
{
157
if (response.IsSuccessStatusCode)
158
159
+ // Temporary debugging code:
160
+
161
+ string packet = await response.Content.ReadAsStringAsync();
162
+ Console.WriteLine($"Response: {packet}");
163
JsonDocument jsonDocument = await JsonDocument.ParseAsync(await response.Content.ReadAsStreamAsync());
164
return jsonDocument.RootElement;
165
}
0 commit comments