Skip to content

Commit dae8ee2

Browse files
committed
chore: cleanup debug logs
1 parent 72cef41 commit dae8ee2

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/e2ee/RNE2EEManager.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,6 @@ export default class RNE2EEManager
6060
return this.encryptionEnabled;
6161
}
6262
get isDataChannelEncryptionEnabled(): boolean {
63-
console.log(
64-
'isDataChannelEncryptionEnabled?',
65-
this.isEnabled,
66-
this.encryptionEnabled,
67-
this.dataChannelEncryptionEnabled,
68-
this.isEnabled && this.dataChannelEncryptionEnabled
69-
);
7063
return this.isEnabled && this.dataChannelEncryptionEnabled;
7164
}
7265

@@ -290,13 +283,11 @@ export default class RNE2EEManager
290283
enabled: boolean,
291284
participantIdentity: string
292285
): void {
293-
console.log('setParticipantCryptorEnabled', enabled, participantIdentity);
294286
if (
295287
this.encryptionEnabled !== enabled &&
296288
participantIdentity === this.room?.localParticipant.identity
297289
) {
298290
this.encryptionEnabled = enabled;
299-
console.log('setting encryption enabled to ', enabled);
300291
this.emit(
301292
EncryptionEvent.ParticipantEncryptionStatusChanged,
302293
enabled,

0 commit comments

Comments
 (0)