Log: 404 jsou jen info
This commit is contained in:
parent
ab6a0a1ebd
commit
d1a1e601c2
1 changed files with 12 additions and 0 deletions
|
@ -241,12 +241,24 @@ LOGGING = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
'filters': {
|
||||||
|
'Http404AsInfo': {
|
||||||
|
'()': 'various.log_filters.Http404AsInfoFilter',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
'loggers': {
|
'loggers': {
|
||||||
|
|
||||||
'django': {
|
'django': {
|
||||||
'handlers': ['console'],
|
'handlers': ['console'],
|
||||||
'level': 'DEBUG',
|
'level': 'DEBUG',
|
||||||
},
|
},
|
||||||
|
'django.request': {
|
||||||
|
'handlers': ['console'],
|
||||||
|
'level': 'DEBUG',
|
||||||
|
'filters': ['Http404AsInfo'],
|
||||||
|
},
|
||||||
|
|
||||||
'seminar.prihlaska.form':{
|
'seminar.prihlaska.form':{
|
||||||
'handlers': ['console','registration_logfile'],
|
'handlers': ['console','registration_logfile'],
|
||||||
'level': 'INFO'
|
'level': 'INFO'
|
||||||
|
|
Loading…
Reference in a new issue