We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14de126 commit 9a3ec59Copy full SHA for 9a3ec59
livekit-rtc/livekit/rtc/data_stream.py
@@ -15,7 +15,6 @@
15
from __future__ import annotations
16
17
import asyncio
18
-import logging
19
import uuid
20
import datetime
21
from collections.abc import Callable
@@ -34,8 +33,6 @@
34
33
35
STREAM_CHUNK_SIZE = 15_000
36
37
-logger = logging.getLogger("livekit")
38
-
39
40
@dataclass
41
class BaseStreamInfo:
@@ -70,7 +67,6 @@ def __init__(
70
67
self._queue: asyncio.Queue[proto_DataStream.Chunk | None] = asyncio.Queue()
71
68
72
69
async def _on_chunk_update(self, chunk: proto_DataStream.Chunk):
73
- logger.info("Received text chunk: %s", chunk.content)
74
await self._queue.put(chunk)
75
76
async def _on_stream_close(self, trailer: proto_DataStream.Trailer):
0 commit comments