Merge pull request #3587 from matrix-org/rav/better_exception_logging
Improve logging for exceptions when handling PDUspull/3598/merge
						commit
						81946db9cf
					
				|  | @ -0,0 +1 @@ | |||
| Improve logging for exceptions when handling PDUs | ||||
|  | @ -24,6 +24,7 @@ from prometheus_client import Counter | |||
| 
 | ||||
| from twisted.internet import defer | ||||
| from twisted.internet.abstract import isIPAddress | ||||
| from twisted.python import failure | ||||
| 
 | ||||
| from synapse.api.constants import EventTypes | ||||
| from synapse.api.errors import AuthError, FederationError, NotFoundError, SynapseError | ||||
|  | @ -186,8 +187,12 @@ class FederationServer(FederationBase): | |||
|                     logger.warn("Error handling PDU %s: %s", event_id, e) | ||||
|                     pdu_results[event_id] = {"error": str(e)} | ||||
|                 except Exception as e: | ||||
|                     f = failure.Failure() | ||||
|                     pdu_results[event_id] = {"error": str(e)} | ||||
|                     logger.exception("Failed to handle PDU %s", event_id) | ||||
|                     logger.error( | ||||
|                         "Failed to handle PDU %s: %s", | ||||
|                         event_id, f.getTraceback().rstrip(), | ||||
|                     ) | ||||
| 
 | ||||
|         yield async.concurrently_execute( | ||||
|             process_pdus_for_room, pdus_by_room.keys(), | ||||
|  | @ -203,8 +208,8 @@ class FederationServer(FederationBase): | |||
|                 ) | ||||
| 
 | ||||
|         pdu_failures = getattr(transaction, "pdu_failures", []) | ||||
|         for failure in pdu_failures: | ||||
|             logger.info("Got failure %r", failure) | ||||
|         for fail in pdu_failures: | ||||
|             logger.info("Got failure %r", fail) | ||||
| 
 | ||||
|         response = { | ||||
|             "pdus": pdu_results, | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Richard van der Hoff
						Richard van der Hoff