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

fix info logger for apple iap

This commit is contained in:
Kyle Spearrin 2019-09-23 14:30:04 -04:00
parent 5e7ac0a9bc
commit 091d6d318c

View File

@ -53,7 +53,7 @@ namespace Bit.Billing.Controllers
try try
{ {
var json = JsonConvert.SerializeObject(JsonConvert.DeserializeObject(body), Formatting.Indented); 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(); return new OkResult();
} }
catch(Exception e) catch(Exception e)