Merge pull request #3508 from pipecat-ai/ss/log-daily-ids

Log Daily participant and meeting session IDs upon successful join in…
This commit is contained in:
Mark Backman
2026-01-20 15:43:48 -05:00
committed by GitHub

View File

@@ -759,7 +759,11 @@ class DailyTransportClient(EventHandler):
# Increment leave counter if we successfully joined.
self._leave_counter += 1
logger.info(f"Joined {self._room_url}")
participant_id = data.get("participants", {}).get("local", {}).get("id")
meeting_id = data.get("meetingSession", {}).get("id")
logger.info(
f"Joined {self._room_url}. Participant ID: {participant_id}, Meeting ID: {meeting_id}"
)
await self._callbacks.on_joined(data)