Browse Source

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

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

19
sapl/settings.py

@ -234,7 +234,8 @@ LANGUAGES = (
TIME_ZONE = config('TZ', default='America/Sao_Paulo') TIME_ZONE = config('TZ', default='America/Sao_Paulo')
if not TIME_ZONE: 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_I18N = True
USE_L10N = True USE_L10N = True
@ -305,15 +306,13 @@ if DEBUG and LOGGING_CONSOLE:
# Descomentar linha abaixo fará com que logs aparecam, inclusive SQL # Descomentar linha abaixo fará com que logs aparecam, inclusive SQL
# LOGGING['handlers']['console']['level'] = 'DEBUG' # LOGGING['handlers']['console']['level'] = 'DEBUG'
LOGGING['loggers']['django']['level'] = 'DEBUG' LOGGING['loggers']['django']['level'] = 'DEBUG'
LOGGING.update({ LOGGING['formatters'].update({
'formatters': { 'verbose': {
'verbose': { 'format': '%(levelname)s %(asctime)s %(pathname)s '
'format': '%(levelname)s %(asctime)s %(pathname)s ' '%(funcName)s %(message)s'
'%(funcName)s %(message)s' },
}, 'simple': {
'simple': { 'format': '%(levelname)s %(message)s'
'format': '%(levelname)s %(message)s'
},
}, },
}) })
LOGGING['handlers']['console']['formatter'] = 'verbose' LOGGING['handlers']['console']['formatter'] = 'verbose'

Loading…
Cancel
Save