fix: add section header separator (=*80) to calendar_sync_api handler entry per INDEX.md logging convention

This commit is contained in:
bsiggel
2026-03-31 07:14:24 +00:00
parent 96c1588a87
commit 8df214afb0

View File

@@ -29,6 +29,9 @@ async def handler(request: ApiRequest, ctx: FlowContext) -> ApiResponse:
"kuerzel": "SB" // or "ALL" for all employees "kuerzel": "SB" // or "ALL" for all employees
} }
""" """
ctx.logger.info("=" * 80)
ctx.logger.info("📥 CALENDAR SYNC API: REQUEST RECEIVED")
ctx.logger.info("=" * 80)
try: try:
# Get kuerzel from request body # Get kuerzel from request body
body = request.body body = request.body