Skip to content

Commit

Permalink
Merge pull request #670 from communitiesuk/debug-logs
Browse files Browse the repository at this point in the history
Only show fund email info as debug logs
  • Loading branch information
samuelhwilliams authored Aug 13, 2024
2 parents 4a2408b + 192f57e commit 2f3b307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions submit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ def setup_funds_and_auth(app: Flask) -> None:
:return: None
"""
app.logger.info("Setting up fund configs and auth mappings")
app.logger.info(
app.logger.debug(
"Adding extra Additional TF auth details from secret",
extra=dict(pf_additional_email=str(Config.TF_ADDITIONAL_EMAIL_LOOKUPS)),
)
app.logger.info(
app.logger.debug(
"Adding extra PF auth details from secret",
extra=dict(pf_additional_email=str(Config.PF_ADDITIONAL_EMAIL_LOOKUPS)),
)
Expand Down

0 comments on commit 2f3b307

Please sign in to comment.