summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-06-16 10:09:43 +0100
committerErik Johnston <erik@matrix.org>2015-06-16 10:09:43 +0100
commitfb7def33446ed8cb01bc6e57cd56a7737b3be8b6 (patch)
tree7e988af0e25337c98803120d817107de46c9deeb
parentMerge branch 'develop' of github.com:matrix-org/synapse into erikj/sanitize_l... (diff)
downloadsynapse-fb7def33446ed8cb01bc6e57cd56a7737b3be8b6.tar.xz
Remove access_token from synapse.rest.client.v1.transactions {get,store}_response logging
-rw-r--r--synapse/rest/client/v1/transactions.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/rest/client/v1/transactions.py b/synapse/rest/client/v1/transactions.py

index d933fea18a..b861069b89 100644 --- a/synapse/rest/client/v1/transactions.py +++ b/synapse/rest/client/v1/transactions.py
@@ -39,10 +39,10 @@ class HttpTransactionStore(object): A tuple of (HTTP response code, response content) or None. """ try: - logger.debug("get_response Key: %s TxnId: %s", key, txn_id) + logger.debug("get_response TxnId: %s", txn_id) (last_txn_id, response) = self.transactions[key] if txn_id == last_txn_id: - logger.info("get_response: Returning a response for %s", key) + logger.info("get_response: Returning a response for %s", txn_id) return response except KeyError: pass @@ -58,7 +58,7 @@ class HttpTransactionStore(object): txn_id (str): The transaction ID for this request. response (tuple): A tuple of (HTTP response code, response content) """ - logger.debug("store_response Key: %s TxnId: %s", key, txn_id) + logger.debug("store_response TxnId: %s", txn_id) self.transactions[key] = (txn_id, response) def store_client_transaction(self, request, txn_id, response):