mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 08:56:04 -04:00
Don't log OPTIONS request at INFO (#8049)
This commit is contained in:
parent
4e874ed593
commit
2f9fd5ab00
2 changed files with 8 additions and 1 deletions
|
@ -319,7 +319,13 @@ class SynapseRequest(Request):
|
|||
def _should_log_request(self) -> bool:
|
||||
"""Whether we should log at INFO that we processed the request.
|
||||
"""
|
||||
return self.path != b"/health"
|
||||
if self.path == b"/health":
|
||||
return False
|
||||
|
||||
if self.method == b"OPTIONS":
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
|
||||
class XForwardedForRequest(SynapseRequest):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue