Skip to content

Commit

Permalink
refactor(view): remove unnecessary log statements
Browse files Browse the repository at this point in the history
similar to what was done in 5666973
  • Loading branch information
angela-tran committed Apr 1, 2024
1 parent 9b15765 commit e65d076
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions benefits/enrollment/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from littlepay.api.client import Client
from requests.exceptions import HTTPError

from benefits.core import models, session
from benefits.core import session
from benefits.core.middleware import (
EligibleSessionRequired,
VerifierSessionRequired,
Expand Down Expand Up @@ -73,9 +73,6 @@ def index(request):
raise Exception("Invalid card token form")

eligibility = session.eligibility(request)
logger.debug(f"Session contains an {models.EligibilityType.__name__}")

logger.debug("Read tokenized card")
card_token = form.cleaned_data.get("card_token")

client = Client(
Expand Down

0 comments on commit e65d076

Please sign in to comment.