From 091d6d318ccb0c80b310ef0aac5d324ae0ec6c4c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 23 Sep 2019 14:30:04 -0400 Subject: [PATCH] fix info logger for apple iap --- src/Billing/Controllers/AppleController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Billing/Controllers/AppleController.cs b/src/Billing/Controllers/AppleController.cs index 43638047a7..5577869ca6 100644 --- a/src/Billing/Controllers/AppleController.cs +++ b/src/Billing/Controllers/AppleController.cs @@ -53,7 +53,7 @@ namespace Bit.Billing.Controllers try { var json = JsonConvert.SerializeObject(JsonConvert.DeserializeObject(body), Formatting.Indented); - _logger.LogInformation("Apple IAP Notification:\n\n" + Constants.BypassFiltersEventId, json); + _logger.LogInformation(Constants.BypassFiltersEventId, "Apple IAP Notification:\n\n{0}", json); return new OkResult(); } catch(Exception e)