Filter logging /lockout/
This commit is contained in:
parent
aaa29715c6
commit
e8198f7b2a
|
@ -8,3 +8,10 @@ class IgnoreStats(logging.Filter):
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
class IgnoreLockout(logging.Filter):
|
||||||
|
def filter(self, record):
|
||||||
|
if 'GET /lockout/' in record.msg:
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
return True
|
||||||
|
|
|
@ -221,11 +221,14 @@ LOGGING = {
|
||||||
'ignore_stats': {
|
'ignore_stats': {
|
||||||
'()': 'apiserver.filters.IgnoreStats',
|
'()': 'apiserver.filters.IgnoreStats',
|
||||||
},
|
},
|
||||||
|
'ignore_lockout': {
|
||||||
|
'()': 'apiserver.filters.IgnoreLockout',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
'handlers': {
|
'handlers': {
|
||||||
'console': {
|
'console': {
|
||||||
'level': 'DEBUG',
|
'level': 'DEBUG',
|
||||||
'filters': ['ignore_stats'],
|
'filters': ['ignore_stats', 'ignore_lockout'],
|
||||||
'class': 'logging.StreamHandler',
|
'class': 'logging.StreamHandler',
|
||||||
'formatter': 'medium'
|
'formatter': 'medium'
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user