From 7f77d661c3b8665176148ce4d89542717f5b85c8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 20 Mar 2019 09:13:25 -0400 Subject: [PATCH] remove logging from base identity client service --- src/Core/Services/Implementations/BaseIdentityClientService.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Core/Services/Implementations/BaseIdentityClientService.cs b/src/Core/Services/Implementations/BaseIdentityClientService.cs index 5efce253e..9a6da0060 100644 --- a/src/Core/Services/Implementations/BaseIdentityClientService.cs +++ b/src/Core/Services/Implementations/BaseIdentityClientService.cs @@ -68,10 +68,7 @@ namespace Bit.Core.Services try { - _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) {