From 54b0db21286b3c1ffefe7dd8c6908c7db74717bb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 19 Mar 2019 21:57:46 -0400 Subject: [PATCH] log from BaseIdentityClientService for testing --- .../Services/Implementations/BaseIdentityClientService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) {