Skip to content
Snippets Groups Projects
Commit d49cbf71 authored by Erik Johnston's avatar Erik Johnston
Browse files

Log event ID on exception

parent 6e025a97
No related branches found
No related tags found
No related merge requests found
...@@ -198,7 +198,10 @@ class TransactionQueue(object): ...@@ -198,7 +198,10 @@ class TransactionQueue(object):
], ],
) )
except Exception: except Exception:
logger.exception("Failed to calculate hosts in room") logger.exception(
"Failed to calculate hosts in room for event: %s",
event.event_id,
)
return return
destinations = set(destinations) destinations = set(destinations)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment