Fix Daily transport log level and eval script import

Change participant_updated log from debug to trace (too noisy).
Fix deepgram LiveOptions import in eval script.
This commit is contained in:
Aleix Conchillo Flaqué
2026-03-05 16:37:02 -08:00
parent 5b598265c4
commit 1221e2dd76
2 changed files with 2 additions and 3 deletions

View File

@@ -2747,7 +2747,7 @@ class DailyTransport(BaseTransport):
async def _on_participant_updated(self, participant):
"""Handle participant updated events."""
logger.debug(f"{self} participant updated: {participant}")
logger.trace(f"{self} participant updated: {participant}")
await self._call_event_handler("on_participant_updated", participant)
async def _on_transcription_message(self, message: Mapping[str, Any]) -> None: