Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
meln1k committed Mar 4, 2024
1 parent 6f0cd45 commit 96e0fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixbackend/subscription/aws_marketplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ async def subscribed(self, user: User, token: str) -> Tuple[SubscriptionMethod,
# only create a new subscription if there is no existing one
if existing := await self.subscription_repo.aws_marketplace_subscription(user.id, customer_identifier):
log.info(
f"AWS Marketplace user {user.email}: return existing subscription, user_id: {existing}, customer_identifier: {customer_identifier}"
f"AWS Marketplace user {user.email}: return existing subscription, customer_identifier: {customer_identifier}, user_id: {user.id}, existing: {existing}"
)
return existing, workspace_assigned
else:
Expand Down

0 comments on commit 96e0fcc

Please sign in to comment.