More logging

This commit is contained in:
2025-06-11 00:48:45 -07:00
parent 83debdace8
commit ed9dfb990f
3 changed files with 3 additions and 3 deletions

View File

@@ -534,7 +534,7 @@ class PeerConnection {
private isSettingRemoteAnswerPending: boolean = false; private isSettingRemoteAnswerPending: boolean = false;
private polite = true; private polite = true;
private webRTCSuperlog = true; private webRTCSuperlog = true;
private dataChannelSuperlog = false; private dataChannelSuperlog = true;
private chunkSize = (16 * 1024) - 100; private chunkSize = (16 * 1024) - 100;
messageSuperlog: boolean = false; messageSuperlog: boolean = false;
sendQueueSuperLog: boolean = false; sendQueueSuperLog: boolean = false;

View File

@@ -395,7 +395,7 @@ class PeerConnection {
this.isSettingRemoteAnswerPending = false; this.isSettingRemoteAnswerPending = false;
this.polite = true; this.polite = true;
this.webRTCSuperlog = true; this.webRTCSuperlog = true;
this.dataChannelSuperlog = false; this.dataChannelSuperlog = true;
this.chunkSize = (16 * 1024) - 100; this.chunkSize = (16 * 1024) - 100;
this.messageSuperlog = false; this.messageSuperlog = false;
this.sendQueueSuperLog = false; this.sendQueueSuperLog = false;

File diff suppressed because one or more lines are too long