Skip to content

Commit 2abe3b7

Browse files
authored
Merge pull request #163 from CS3219-AY2425S1/fix/audio-call
Add more debug logs for audio call
2 parents 8bb57a3 + 882c06c commit 2abe3b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

peerprep-fe/src/app/collaboration/components/AudioSharing.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ const AudioSharing = () => {
2626
const TURN_CREDENTIAL = process.env.NEXT_PUBLIC_TURN_PASSWORD;
2727

2828
if (!TURN_SERVER || !TURN_USERNAME || !TURN_CREDENTIAL) {
29-
console.error('Missing TURN environment variables');
29+
console.error(TURN_SERVER);
30+
console.error(TURN_USERNAME);
31+
console.error(TURN_CREDENTIAL);
3032
}
3133

3234
const cleanupAudio = () => {

0 commit comments

Comments
 (0)