diff options
author | David Baker <dbkr@users.noreply.github.com> | 2016-07-26 10:49:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-26 10:49:55 +0100 |
commit | d34e9f93b7f39fce5a98a45af3e95d3fe08b4798 (patch) | |
tree | fa88fe4599b38eac5a9f634fe9ee25da3692e333 /synapse/http | |
parent | federation doesn't work over ipv6 yet thanks to twisted (diff) | |
parent | Implement updating devices (diff) | |
download | synapse-d34e9f93b7f39fce5a98a45af3e95d3fe08b4798.tar.xz |
Merge pull request #949 from matrix-org/rav/update_devices
Implement updates and deletes for devices
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/server.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/http/server.py b/synapse/http/server.py index f705abab94..2b3c05a740 100644 --- a/synapse/http/server.py +++ b/synapse/http/server.py @@ -205,6 +205,7 @@ class JsonResource(HttpServer, resource.Resource): def register_paths(self, method, path_patterns, callback): for path_pattern in path_patterns: + logger.debug("Registering for %s %s", method, path_pattern.pattern) self.path_regexs.setdefault(method, []).append( self._PathEntry(path_pattern, callback) ) |