Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 24, 2024
1 parent 3c01ee8 commit ab3ad4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 0 additions & 8 deletions acceptance_tests/tests/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ services:
- C2CWSGIUTILS_LOG_LEVEL=DEBUG
- SQL_LOG_LEVEL=DEBUG
- OTHER_LOG_LEVEL=INFO
- SENTRY_URL=https://14bdb65de3f247c4a89cc7ed53ddec72@sentry.camptocamp.com/5
- SENTRY_CLIENT_ENVIRONMENT=local
- SENTRY_CLIENT_RELEASE=latest
- SENTRY_TAG_SERVICE=alembic_master
links:
- db
command:
Expand All @@ -105,10 +101,6 @@ services:
- C2CWSGIUTILS_LOG_LEVEL=DEBUG
- SQL_LOG_LEVEL=DEBUG
- OTHER_LOG_LEVEL=INFO
- SENTRY_URL=https://14bdb65de3f247c4a89cc7ed53ddec72@sentry.camptocamp.com/5
- SENTRY_CLIENT_ENVIRONMENT=local
- SENTRY_CLIENT_RELEASE=latest
- SENTRY_TAG_SERVICE=alembic_slave
links:
- db_slave:db
command:
Expand Down
2 changes: 2 additions & 0 deletions c2cwsgiutils/setup_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""

import argparse
import logging
import warnings
from typing import Any, Callable, Optional, TypedDict, cast

Expand Down Expand Up @@ -95,4 +96,5 @@ def bootstrap_application(
"""
loader = get_config_loader(config_uri)
loader.setup_logging(options)
logging.getLogger(__name__).info("Loading the application from %s", config_uri)
return cast(PyramidEnv, bootstrap(config_uri, options=options))

0 comments on commit ab3ad4b

Please sign in to comment.