We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 024809b commit fa6f924Copy full SHA for fa6f924
1 file changed
src/pipecat/transports/daily/transport.py
@@ -759,7 +759,11 @@ async def join(self):
759
# Increment leave counter if we successfully joined.
760
self._leave_counter += 1
761
762
- logger.info(f"Joined {self._room_url}")
+ participant_id = data.get("participants", {}).get("local", {}).get("id")
763
+ meeting_id = data.get("meetingSession", {}).get("id")
764
+ logger.info(
765
+ f"Joined {self._room_url}. Participant ID: {participant_id}, Meeting ID: {meeting_id}"
766
+ )
767
768
await self._callbacks.on_joined(data)
769
0 commit comments