Skip to content

Commit

Permalink
fix: removed logging entries for Database interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lombardoh committed Jul 13, 2023
1 parent 23a2ff2 commit 2163144
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/background_processes/application_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ def get_dated_applications(session):
)
.all()
)
logging.info(applications_to_remove_data)
except SQLAlchemyError as e:
raise e

Expand Down Expand Up @@ -171,7 +170,7 @@ def get_lapsed_applications(session):
)
.all()
)
logging.info(applications_to_set_to_lapsed)

except SQLAlchemyError as e:
raise e

Expand Down Expand Up @@ -203,7 +202,7 @@ def get_applications_to_remind_intro():
)
.all()
)
logging.info(users)

except SQLAlchemyError as e:
raise e
return users or []
Expand Down Expand Up @@ -233,7 +232,7 @@ def get_applications_to_remind_submit():
)
.all()
)
logging.info(users)

except SQLAlchemyError as e:
raise e
return users or []
Expand Down

0 comments on commit 2163144

Please sign in to comment.