Lowering readability logs.

This commit is contained in:
Samuel Clay 2021-05-12 18:54:04 -04:00
parent 3afd50a061
commit 428647f70c
2 changed files with 2 additions and 16 deletions

View file

@ -36,7 +36,7 @@ alllogs:
# brings down containers
down:
- docker-compose -f docker-compose.yml down
nb-down: down
nbdown: down
# runs tests
test:

View file

@ -189,10 +189,6 @@ LOGGING = {
# 'filters': ['require_debug_false'],
'include_html': True,
},
# 'sentry': {
# 'level': 'ERROR',
# 'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler'
# },
},
'loggers': {
'django': {
@ -216,7 +212,7 @@ LOGGING = {
},
'readability': {
'handlers': ['console', 'log_file'],
'level': 'DEBUG',
'level': 'INFO',
'propagate': False,
},
'apps': {
@ -224,16 +220,6 @@ LOGGING = {
'level': 'DEBUG',
'propagate': True,
},
# 'raven': {
# 'level': 'DEBUG',
# 'handlers': ['console'],
# 'propagate': False,
# },
# 'sentry.errors': {
# 'level': 'DEBUG',
# 'handlers': ['console'],
# 'propagate': False,
# },
},
'filters': {
'require_debug_false': {