From e1e147b78ff9bf36744eac2fbb75212d21fc494e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 13 Sep 2019 10:00:20 -0400 Subject: [PATCH] log apple status update --- src/Billing/Controllers/AppleController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Billing/Controllers/AppleController.cs b/src/Billing/Controllers/AppleController.cs index 43884830e2..f7941d254a 100644 --- a/src/Billing/Controllers/AppleController.cs +++ b/src/Billing/Controllers/AppleController.cs @@ -1,4 +1,5 @@ using Bit.Billing.Utilities; +using Bit.Core; using Bit.Core.Enums; using Bit.Core.Models.Table; using Bit.Core.Repositories; @@ -67,7 +68,8 @@ namespace Bit.Billing.Controllers return new BadRequestResult(); } - + _logger.LogInformation(Constants.BypassFiltersEventId, "Got IAP Status Update"); + _logger.LogInformation(Constants.BypassFiltersEventId, body); return new OkResult(); }