Skip to content

Commit cf887c6

Browse files
authored
fix: remove stats video data print from logs (#716)
1 parent 9a714b9 commit cf887c6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/src/track/local/video.dart

-3
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@ class LocalVideoTrack extends LocalTrack with VideoTrack {
117117
}
118118

119119
final stats = await sender!.getStats();
120-
print(
121-
'sender stats: ${stats.map((e) => 'id: ${e.id}, type: ${e.type}, timestamp: ${e.timestamp}, values: ${e.values.toString()} ')}');
122-
print('sender stats: ${stats.map((e) => e.values.toString())}');
123120
List<VideoSenderStats> items = [];
124121
for (var v in stats) {
125122
if (v.type == 'outbound-rtp') {

0 commit comments

Comments
 (0)