Log event ID on exception
parent
6e025a97b4
commit
d49cbf712f
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue