From 8adc22fa2c4ed9e615862251cafd2f481ea1a04c Mon Sep 17 00:00:00 2001 From: Austin Lindenberg Date: Thu, 26 Sep 2024 20:00:47 -0700 Subject: [PATCH] logs --- djstripe/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/djstripe/__init__.py b/djstripe/__init__.py index f2ba08e2..357828f6 100644 --- a/djstripe/__init__.py +++ b/djstripe/__init__.py @@ -20,6 +20,7 @@ class DjstripeAppConfig(AppConfig): def ready(self): import stripe + print("in ready function of DjstripeAppConfig") from . import ( # noqa: Register the checks and event handlers checks, event_handlers, @@ -32,3 +33,4 @@ def ready(self): version=__version__, url="https://github.com/dj-stripe/dj-stripe", ) + print("after import event_handlers")