Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
NvdLaan committed Dec 3, 2024
1 parent e377a39 commit 7c4ff61
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@

TAG_NAME = os.getenv("TAG_NAME", "default-release")

LOGGING_LEVEL = "INFO"
LOGGING_LEVEL = os.getenv("LOGGING_LEVEL", "DEBUG")

LOGGING = {
"version": 1,
Expand Down Expand Up @@ -214,7 +214,7 @@
"level": LOGGING_LEVEL,
"propagate": True,
},
"mozilla_django_oidc": {"handlers": ["console"], "level": "DEBUG"},
"mozilla_django_oidc": {"handlers": ["console"], "level": LOGGING_LEVEL},
},
}

Expand Down Expand Up @@ -269,7 +269,6 @@ def filter_traces(envelope):
OIDC_AUTHORIZED_GROUPS
OIDC_OP_USER_ENDPOINT
"""
# OIDC_RP_CLIENT_ID = os.environ.get("OIDC_RP_CLIENT_ID", None)
OIDC_RP_CLIENT_SECRET = os.environ.get("OIDC_RP_CLIENT_SECRET", None)
OIDC_USE_NONCE = False
OIDC_AUTHORIZED_GROUPS = (
Expand Down

0 comments on commit 7c4ff61

Please sign in to comment.