Browse Source

HOT-FIX: corrige erro de atualização de dict

pull/2250/head
Leandro Roberto 6 years ago
parent
commit
2c6a325860
  1. 7
      sapl/settings.py

7
sapl/settings.py

@ -234,7 +234,8 @@ LANGUAGES = (
TIME_ZONE = config('TZ', default='America/Sao_Paulo')
if not TIME_ZONE:
raise ValueError('TIMEZONE env variable undefined in .env settings file! Leaving...')
raise ValueError(
'TIMEZONE env variable undefined in .env settings file! Leaving...')
USE_I18N = True
USE_L10N = True
@ -305,8 +306,7 @@ if DEBUG and LOGGING_CONSOLE:
# Descomentar linha abaixo fará com que logs aparecam, inclusive SQL
# LOGGING['handlers']['console']['level'] = 'DEBUG'
LOGGING['loggers']['django']['level'] = 'DEBUG'
LOGGING.update({
'formatters': {
LOGGING['formatters'].update({
'verbose': {
'format': '%(levelname)s %(asctime)s %(pathname)s '
'%(funcName)s %(message)s'
@ -314,7 +314,6 @@ if DEBUG and LOGGING_CONSOLE:
'simple': {
'format': '%(levelname)s %(message)s'
},
},
})
LOGGING['handlers']['console']['formatter'] = 'verbose'
LOGGING['loggers'][BASE_DIR.name] = {

Loading…
Cancel
Save