Always log ICE change on client

This commit is contained in:
Alexandre Iooss 2020-10-11 15:03:28 +02:00
parent d73a7be9f3
commit de5a48ded7
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
1 changed files with 1 additions and 4 deletions

View File

@ -10,9 +10,9 @@ startPeerConnection = () => {
// On connection change, change indicator color
// if connection failed, restart peer connection
peerConnection.oniceconnectionstatechange = e => {
console.log("ICE connection state changed, " + peerConnection.iceConnectionState)
switch (peerConnection.iceConnectionState) {
case "disconnected":
console.log(peerConnection.iceConnectionState)
document.getElementById("connectionIndicator").style.fill = "#dc3545"
break
case "checking":
@ -28,9 +28,6 @@ startPeerConnection = () => {
peerConnection = null
setTimeout(startPeerConnection, 1000)
break
default:
console.log(peerConnection.iceConnectionState)
break
}
}