Log origin and stats of incoming transactions

pull/4/merge
Erik Johnston 10 years ago
parent e70e8e053e
commit b21d015c55
  1. 8
      synapse/federation/transport/server.py

@ -196,6 +196,14 @@ class FederationSendServlet(BaseFederationServlet):
transaction_id, str(transaction_data)
)
logger.info(
"Received txn %s from %s. (PDUs: %d, EDUs: %d, failures: %d)",
transaction_id, origin,
len(transaction_data.get("pdus", [])),
len(transaction_data.get("edus", [])),
len(transaction_data.get("failures", [])),
)
# We should ideally be getting this from the security layer.
# origin = body["origin"]

Loading…
Cancel
Save