Skip to content

Commit

Permalink
remove extra logging
Browse files Browse the repository at this point in the history
  • Loading branch information
shtukas committed Oct 22, 2024
1 parent ae24ca6 commit 1130b1d
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ object AmendmentHandler extends CohortHandler {
for {
subscriptionBeforeUpdate <- fetchSubscription(item)

_ <- Logging.info(s"subscription ${subscriptionBeforeUpdate}")

startDate <- ZIO.fromOption(item.startDate).orElseFail(DataExtractionFailure(s"No start date in $item"))

oldPrice <- ZIO.fromOption(item.oldPrice).orElseFail(DataExtractionFailure(s"No old price in $item"))
Expand All @@ -124,8 +122,6 @@ object AmendmentHandler extends CohortHandler {

account <- Zuora.fetchAccount(subscriptionBeforeUpdate.accountNumber, subscriptionBeforeUpdate.subscriptionNumber)

_ <- Logging.info(s"account ${account}")

_ <- renewSubscription(subscriptionBeforeUpdate, subscriptionBeforeUpdate.termEndDate, account)

invoicePreviewBeforeUpdate <-
Expand Down

0 comments on commit 1130b1d

Please sign in to comment.