We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b63b35 commit 5d24441Copy full SHA for 5d24441
src/net/transport/WebRTCConnection.ts
@@ -311,7 +311,7 @@ class WebRTCConnection implements Connection {
311
312
private handleReceiveIceCandidate(candidate: RTCIceCandidateInit) {
313
this.connection?.addIceCandidate(candidate).catch((reason: any) => {
314
- WebRTCConnection.logger.warning('Failed to set ICE candidate, reason: ' + JSON.stringify(reason));
+ WebRTCConnection.logger.debug('Failed to set ICE candidate, reason: ' + JSON.stringify(reason));
315
});
316
}
317
0 commit comments