added response logging

This commit is contained in:
Brett Hewitson 2021-12-20 13:33:26 +10:00
parent 59bcade7d2
commit 362566d100

View file

@ -174,7 +174,8 @@ namespace ServerManagerTool.Common.Utils
{
using (var client = new WebClient())
{
await client.DownloadStringTaskAsync(uri);
var response = await client.DownloadStringTaskAsync(uri);
_logger.Debug($"{nameof(PerformCallToAPIAsync)} - Response calling API: {response}");
}
}
catch (Exception ex)