Update base.py
Renamed `ENABLE_LOGGING` to `ENABLE_DEBUG_LOGGING`
This commit is contained in:
parent
e8e7be7618
commit
d565294119
1 changed files with 2 additions and 2 deletions
|
@ -521,9 +521,9 @@ GOOGLE_ANALYTICS_PROPERTY_IDS = {
|
||||||
'dynamicweb-staging.ungleich.ch': 'staging'
|
'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 = {
|
LOGGING = {
|
||||||
'version': 1,
|
'version': 1,
|
||||||
'disable_existing_loggers': False,
|
'disable_existing_loggers': False,
|
||||||
|
|
Loading…
Reference in a new issue