Skip to content

Commit

Permalink
Remove extra space from logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rupertbates committed Dec 11, 2023
1 parent 9f6ed76 commit 66c66ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ object RecurringContributionToSupporterPlus {
balanceToAdjust: BigDecimal,
): ZIO[InvoiceItemAdjustment with GetInvoiceItems, ErrorResponse, Unit] =
for {
_ <- ZIO.log(s" Attempting to adjust invoice $invoiceId")
_ <- ZIO.log(s"Attempting to adjust invoice $invoiceId")
invoiceResponse <- GetInvoiceItems.get(invoiceId)
invoiceItems = invoiceResponse.invoiceItems
invoiceItem <- ZIO
Expand Down

0 comments on commit 66c66ca

Please sign in to comment.