also for test installs

pull/1/head
eric 2016-05-11 09:12:42 -04:00
parent 4c3b3f2760
commit 4151a6e2b3
3 changed files with 24 additions and 0 deletions

View File

@ -97,6 +97,10 @@ LOGGING = {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
},
'null': {
'level': 'DEBUG',
'class': 'logging.NullHandler',
},
},
'loggers': {
'django.request': {
@ -104,6 +108,10 @@ LOGGING = {
'level': 'ERROR',
'propagate': True,
},
'django.security.DisallowedHost': {
'handlers': ['null'],
'propagate': False,
},
}
}

View File

@ -87,6 +87,10 @@ LOGGING = {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
},
'null': {
'level': 'DEBUG',
'class': 'logging.NullHandler',
},
},
'loggers': {
'django.request': {
@ -94,6 +98,10 @@ LOGGING = {
'level': 'ERROR',
'propagate': True,
},
'django.security.DisallowedHost': {
'handlers': ['null'],
'propagate': False,
},
}
}

View File

@ -85,6 +85,10 @@ LOGGING = {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
},
'null': {
'level': 'DEBUG',
'class': 'logging.NullHandler',
},
},
'loggers': {
'django.request': {
@ -92,6 +96,10 @@ LOGGING = {
'level': 'ERROR',
'propagate': True,
},
'django.security.DisallowedHost': {
'handlers': ['null'],
'propagate': False,
},
}
}