diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-09 13:46:22 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-09 13:46:22 +0000 |
commit | 24cc6979fb384ef383309b27d06985ba3a845b2b (patch) | |
tree | a2fb750a2bd42133ff7767cb2696c5918797f9c7 /synapse/rest/client/v2_alpha | |
parent | glob *s should probably be non-greedy (diff) | |
download | synapse-24cc6979fb384ef383309b27d06985ba3a845b2b.tar.xz |
Log when we receive a request, when we send a response and how long it took to process it.
Diffstat (limited to 'synapse/rest/client/v2_alpha')
-rw-r--r-- | synapse/rest/client/v2_alpha/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/__init__.py b/synapse/rest/client/v2_alpha/__init__.py index 8f611de3a8..bca65f2a6a 100644 --- a/synapse/rest/client/v2_alpha/__init__.py +++ b/synapse/rest/client/v2_alpha/__init__.py @@ -25,7 +25,7 @@ class ClientV2AlphaRestResource(JsonResource): """A resource for version 2 alpha of the matrix client API.""" def __init__(self, hs): - JsonResource.__init__(self) + JsonResource.__init__(self, hs) self.register_servlets(self, hs) @staticmethod |