Get rid of local logger

This commit is contained in:
lpm0073 2022-05-13 18:54:53 -05:00
parent 5a0a2cc922
commit 461e882fd1
2 changed files with 2 additions and 4 deletions

View File

@ -1,8 +1,8 @@
from credentials.settings.utils import get_logger_config
# Get rid of local logger
LOGGING = get_logger_config(debug=True, dev_env=True, local_loglevel="INFO")
#del LOGGING["handlers"]["local"]
LOGGING = get_logger_config(debug=False, dev_env=True, local_loglevel="INFO")
del LOGGING["handlers"]["local"]
{{ patch("credentials-settings-common") }}

View File

@ -6,6 +6,4 @@ SOCIAL_AUTH_EDX_OAUTH2_PUBLIC_URL_ROOT = "{% if ENABLE_HTTPS %}https{% else %}ht
BACKEND_SERVICE_EDX_OAUTH2_KEY = "{{ CREDENTIALS_OAUTH2_KEY }}"
{{ patch("credentials-settings-production") }}