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 be1161f commit 3419211Copy full SHA for 3419211
src/busylight/api/main.py
@@ -47,14 +47,13 @@ def create_app() -> FastAPI:
47
"""Create and configure FastAPI application with middleware and routing."""
48
settings = get_settings()
49
50
- # Setup integrated logging for uvicorn compatibility
51
setup_logging(debug=settings.debug)
52
53
dependencies = []
54
if settings.is_auth_enabled:
55
logger.info("Authentication enabled via environment variables")
56
else:
57
- logger.info("Authentication disabled - no credentials found in environment")
+ logger.info("Authentication disabled, no credentials found in environment")
58
59
app = FastAPI(
60
title=settings.title,
0 commit comments