Skip to content

Commit 5557b3f

Browse files
committed
feat(react): Extend the statistics report with audio stats
- add bitrate and jitter for RN CallStats.tsx
1 parent f5e883d commit 5557b3f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sample-apps/react-native/dogfood/src/components/CallStats.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,6 @@ const calculatePublishAudioBitrate = (
356356
audioStats.totalBytesSent - previousAudioStats.totalBytesSent;
357357
const timeElapsed = audioStats.timestamp - previousAudioStats.timestamp;
358358

359-
console.log(bytesSent);
360359
return `${((bytesSent * 8) / timeElapsed).toFixed(2)} kbps`;
361360
};
362361

0 commit comments

Comments
 (0)