We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4778743 commit 545e68bCopy full SHA for 545e68b
migrations/versions/schema/2025-09-30_a87d11eb8dd1_add_nsistp.py
@@ -13,7 +13,7 @@
13
from orchestrator.targets import Target
14
15
# revision identifiers, used by Alembic.
16
-revision = "a87d11eb8dd1"
+revision = "a87d11eb8dd5"
17
down_revision = "0e8d17ce0f06"
18
branch_labels = None
19
depends_on = None
wsgi.py
@@ -18,6 +18,11 @@
from graphql_federation import CUSTOM_GRAPHQL_MODELS
import products # noqa: F401 Side-effects
20
import workflows # noqa: F401 Side-effects
21
+import structlog
22
+
23
+logger = structlog.get_logger(__name__)
24
25
app = OrchestratorCore(base_settings=AppSettings())
26
app.register_graphql(graphql_models=CUSTOM_GRAPHQL_MODELS)
27
28
+logger.error("TEST error")
0 commit comments