Fix broken warning in the wrtc js module

This commit is contained in:
Sergey Stepanov 2023-04-24 14:16:25 +03:00
parent 62fc68e88b
commit 229cd4044c
No known key found for this signature in database
GPG key ID: A56B4929BAA8556B

View file

@ -85,7 +85,7 @@ const webrtc = (() => {
case 'gathering':
log.info('[rtc] ice gathering');
timeForIceGathering = setTimeout(() => {
log.warning(`[rtc] ice gathering was aborted due to timeout ${ICE_TIMEOUT}ms`);
log.warn(`[rtc] ice gathering was aborted due to timeout ${ICE_TIMEOUT}ms`);
// sendCandidates();
}, ICE_TIMEOUT);
break;