Revert "Mazání POST dat u hlášek o špatných formulářích"
This reverts commit c95d1413ec
.
This commit is contained in:
parent
1d60e674b3
commit
f42bc12704
2 changed files with 0 additions and 27 deletions
|
@ -245,9 +245,6 @@ LOGGING = {
|
|||
'Http404AsInfo': {
|
||||
'()': 'various.log_filters.Http404AsInfoFilter',
|
||||
},
|
||||
'StripSensitiveFormData': {
|
||||
'()': 'various.log_filters.StripSensitiveFormDataFilter',
|
||||
},
|
||||
},
|
||||
|
||||
'loggers': {
|
||||
|
@ -261,11 +258,6 @@ LOGGING = {
|
|||
'level': 'DEBUG',
|
||||
'filters': ['Http404AsInfo'],
|
||||
},
|
||||
'django.security.csrf': {
|
||||
'handlers': ['none'], # vyřeší propagace?
|
||||
'level': 'DEBUG',
|
||||
'filters': ['StripSensitiveFormData'],
|
||||
},
|
||||
|
||||
'seminar.prihlaska.form':{
|
||||
'handlers': ['console','registration_logfile'],
|
||||
|
@ -280,7 +272,6 @@ LOGGING = {
|
|||
'': {
|
||||
'handlers': ['console'], # Add 'mail_admins' in prod and test
|
||||
'level': 'DEBUG',
|
||||
'filters': ['StripSensitiveFormData'],
|
||||
},
|
||||
|
||||
},
|
||||
|
|
|
@ -1,24 +1,6 @@
|
|||
from logging import Filter, INFO
|
||||
from django.urls import reverse
|
||||
|
||||
class Http404AsInfoFilter(Filter):
|
||||
def filter(self, record):
|
||||
if record.name == 'django.request' and record.status_code == 404:
|
||||
record.levelno = INFO
|
||||
return 1 # Keep the log record
|
||||
|
||||
class StripSensitiveFormDataFilter(Filter):
|
||||
def filter(self, record):
|
||||
if hasattr(record, 'request') and record.request.path in [
|
||||
reverse('login'),
|
||||
reverse('logout'),
|
||||
reverse('seminar_prihlaska'),
|
||||
reverse('seminar_resitel_edit'),
|
||||
reverse('reset_password'),
|
||||
reverse('reset_password_done'),
|
||||
reverse('reset_password_confirm'),
|
||||
reverse('reset_password_complete'),
|
||||
reverse('change_password'),
|
||||
]:
|
||||
record.request.POST=[]
|
||||
return 1
|
||||
|
|
Loading…
Reference in a new issue