1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-11 08:08:14 -05:00

log from BaseIdentityClientService for testing

This commit is contained in:
Kyle Spearrin 2019-03-19 21:57:46 -04:00
parent 6d581c57fe
commit 54b0db2128

View File

@ -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)
{