[BACKEND] Log full subscription errors

This commit is contained in:
Jesse Bannon 2023-11-03 09:28:13 -07:00
parent e9b2214a0a
commit 2a3cfb6db6

View file

@ -364,6 +364,7 @@ class SubscriptionDownload(BaseSubscription, ABC):
try:
yield
except Exception as exc: # pylint: disable=broad-except
logger.exception("The following error occurred for the subscription %s:", self.name)
self._exception = exc
return self.transaction_log