diff --git a/src/Core/Services/Implementations/BaseIdentityClientService.cs b/src/Core/Services/Implementations/BaseIdentityClientService.cs index f2f26696ab..5efce253ea 100644 --- a/src/Core/Services/Implementations/BaseIdentityClientService.cs +++ b/src/Core/Services/Implementations/BaseIdentityClientService.cs @@ -68,7 +68,10 @@ namespace Bit.Core.Services try { - await Client.SendAsync(message); + _logger.LogInformation(Constants.BypassFiltersEventId, + "SendAsync {0}: \n{1}", message.RequestUri.ToString(), JsonConvert.SerializeObject(requestModel)); + var response = await Client.SendAsync(message); + _logger.LogInformation(Constants.BypassFiltersEventId, "SendAsync Response: {0}", response.StatusCode); } catch(Exception e) {