diff --git a/api/payments/orchestrator/internal/service/orchestrator/handlers_commands.go b/api/payments/orchestrator/internal/service/orchestrator/handlers_commands.go index 6818401..a1941e9 100644 --- a/api/payments/orchestrator/internal/service/orchestrator/handlers_commands.go +++ b/api/payments/orchestrator/internal/service/orchestrator/handlers_commands.go @@ -143,12 +143,9 @@ func (h *quotePaymentsCommand) Execute(ctx context.Context, req *orchestratorv1. if err := quotesStore.Create(ctx, record); err != nil { return gsresponse.Auto[orchestratorv1.QuotePaymentsResponse](h.logger, mservice.PaymentOrchestrator, err) } - h.logger.Info( - "stored payment quotes", - zap.String("quote_ref", quoteRef), - mzap.ObjRef("org_ref", orgRef), - zap.String("idempotency_key", baseKey), - zap.Int("quote_count", len(quotes)), + h.logger.Info("Stored payment quotes", + zap.String("quote_ref", quoteRef), mzap.ObjRef("org_ref", orgRef), + zap.String("idempotency_key", baseKey), zap.Int("quote_count", len(quotes)), ) }