fix: aumentar logs para obter mais dados
All checks were successful
BCards Deployment Pipeline / Run Tests (push) Successful in 7s
BCards Deployment Pipeline / PR Validation (push) Has been skipped
BCards Deployment Pipeline / Build and Push Image (push) Successful in 16m6s
BCards Deployment Pipeline / Deploy to Production (ARM - OCI) (push) Successful in 2m23s
BCards Deployment Pipeline / Deploy to Staging (x86 - Local) (push) Has been skipped
BCards Deployment Pipeline / Cleanup Old Resources (push) Has been skipped
BCards Deployment Pipeline / Deployment Summary (push) Successful in 0s

This commit is contained in:
Ricardo Carneiro 2025-09-09 16:12:38 -03:00
parent 25f686eccd
commit ad8cc06fd6

View File

@ -425,6 +425,8 @@ public class StripeWebhookController : ControllerBase
var priceId = stripeSubscription.Items.Data.FirstOrDefault()?.Price.Id; var priceId = stripeSubscription.Items.Data.FirstOrDefault()?.Price.Id;
var planType = !string.IsNullOrEmpty(priceId) ? MapPriceIdToPlanType(priceId) : "Trial"; var planType = !string.IsNullOrEmpty(priceId) ? MapPriceIdToPlanType(priceId) : "Trial";
_logger.LogInformation($"[TID: {traceId}] - PriceId: {priceId}, PlanType: {planType}, User: {user.Id}");
// Create new subscription in our database // Create new subscription in our database
var newSubscription = new Models.Subscription var newSubscription = new Models.Subscription
{ {
@ -440,6 +442,7 @@ public class StripeWebhookController : ControllerBase
UpdatedAt = DateTime.UtcNow UpdatedAt = DateTime.UtcNow
}; };
_logger.LogInformation($"[TID: {traceId}] - try to save into database (subscription) - User: {user.Id}");
await _subscriptionRepository.CreateAsync(newSubscription); await _subscriptionRepository.CreateAsync(newSubscription);
_logger.LogInformation($"[TID: {traceId}] - Created new subscription {newSubscription.Id} for user {user.Id}"); _logger.LogInformation($"[TID: {traceId}] - Created new subscription {newSubscription.Id} for user {user.Id}");