Update base.py

Renamed `ENABLE_LOGGING` to `ENABLE_DEBUG_LOGGING`
This commit is contained in:
Pcoder 2017-07-29 02:02:40 +05:30 committed by GitHub
parent e8e7be7618
commit d565294119
1 changed files with 2 additions and 2 deletions

View File

@ -521,9 +521,9 @@ GOOGLE_ANALYTICS_PROPERTY_IDS = {
'dynamicweb-staging.ungleich.ch': 'staging'
}
ENABLE_LOGGING = bool_env('ENABLE_LOGGING')
ENABLE_DEBUG_LOGGING = bool_env('ENABLE_DEBUG_LOGGING')
if ENABLE_LOGGING:
if ENABLE_DEBUG_LOGGING:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,