Skip to content

Commit 3419211

Browse files
committed
Updated busylight.api.main
Removed comment, reformatted log message.
1 parent be1161f commit 3419211

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/busylight/api/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,13 @@ def create_app() -> FastAPI:
4747
"""Create and configure FastAPI application with middleware and routing."""
4848
settings = get_settings()
4949

50-
# Setup integrated logging for uvicorn compatibility
5150
setup_logging(debug=settings.debug)
5251

5352
dependencies = []
5453
if settings.is_auth_enabled:
5554
logger.info("Authentication enabled via environment variables")
5655
else:
57-
logger.info("Authentication disabled - no credentials found in environment")
56+
logger.info("Authentication disabled, no credentials found in environment")
5857

5958
app = FastAPI(
6059
title=settings.title,

0 commit comments

Comments
 (0)