Log requests which are simulated by the unit tests. (#4905)

Rather than stubbing out the access_log, make it actually log the requests,
which makes it a lot more obvious what is going on during tests.
pull/4912/head
Richard van der Hoff 2019-03-20 18:00:02 +00:00 committed by GitHub
parent 263f2c9ce1
commit a6f2d3053d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 8 deletions

1
changelog.d/4905.misc Normal file
View File

@ -0,0 +1 @@
Log requests which are simulated by the unit tests.

View File

@ -119,14 +119,7 @@ class FakeSite:
server_version_string = b"1"
site_tag = "test"
@property
def access_logger(self):
class FakeLogger:
def info(self, *args, **kwargs):
pass
return FakeLogger()
access_logger = logging.getLogger("synapse.access.http.fake")
def make_request(