Remove stale debug lines

This commit is contained in:
Erik Johnston 2015-06-19 10:18:02 +01:00
parent eb928c9f52
commit 18968efa0a

View File

@ -135,15 +135,6 @@ class MatrixFederationHttpClient(object):
txn_id, destination, method, url_bytes txn_id, destination, method, url_bytes
) )
logger.debug(
"Types: %s",
[
type(destination), type(method), type(path_bytes),
type(param_bytes),
type(query_bytes)
]
)
# XXX: Would be much nicer to retry only at the transaction-layer # XXX: Would be much nicer to retry only at the transaction-layer
# (once we have reliable transactions in place) # (once we have reliable transactions in place)
retries_left = 5 retries_left = 5
@ -175,7 +166,6 @@ class MatrixFederationHttpClient(object):
time_out=timeout/1000. if timeout else 60, time_out=timeout/1000. if timeout else 60,
) )
logger.debug("{%s} Got response to %s", txn_id, method)
log_result = "%d %s" % (response.code, response.phrase,) log_result = "%d %s" % (response.code, response.phrase,)
break break
except Exception as e: except Exception as e: