Commit 7ea37dad by Őry Máté

circle: print debug log to console

parent 7514b54e
......@@ -69,3 +69,9 @@ if get_env_variable('DJANGO_TOOLBAR', 'FALSE') == 'TRUE':
'SHOW_TEMPLATE_CONTEXT': True,
}
########## END TOOLBAR CONFIGURATION
LOGGING['handlers']['console'] = {'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple'}
for i in LOCAL_APPS:
LOGGING['loggers'][i] = {'handlers': ['console'], 'level': 'DEBUG'}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment