Added logger function to members app

This commit is contained in:
henu
2016-12-02 19:11:35 +02:00
parent 57b4eb3be5
commit d19e148102
3 changed files with 43 additions and 5 deletions
+5
View File
@@ -11,6 +11,7 @@ https://docs.djangoproject.com/en/1.9/ref/settings/
"""
import os
import logging
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
@@ -121,6 +122,10 @@ EMAIL_USE_TLS = True
GOOGLE_RECAPTCHA_SITE_KEY = "YOUR-PUBLIC-KEY"
GOOGLE_RECAPTCHA_SECRET_KEY = "YOUR-PRIVATE-KEY"
#Logger level
LOGGERLEVEL = logging.ERROR
# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/