From 77643a4fe144cb908a372a2ceb99f36634457ca5 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 20 Nov 2022 12:24:03 -0700 Subject: Add more error handling --- stator/models.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'stator/models.py') diff --git a/stator/models.py b/stator/models.py index df385dd..a84f8c2 100644 --- a/stator/models.py +++ b/stator/models.py @@ -4,6 +4,7 @@ import traceback from typing import ClassVar, List, Optional, Type, Union, cast from asgiref.sync import sync_to_async +from django.conf import settings from django.db import models, transaction from django.utils import timezone from django.utils.functional import classproperty @@ -154,6 +155,10 @@ class StatorModel(models.Model): next_state = await current_state.handler(self) except BaseException as e: await StatorError.acreate_from_instance(self, e) + if settings.SENTRY_ENABLED: + from sentry_sdk import capture_exception + + capture_exception(e) traceback.print_exc() else: if next_state: -- cgit v1.2.3