mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser: Replaced error to warning log
parent
c4d2c354e9
commit
3d46a2c473
|
@ -252,7 +252,7 @@ export class WebRtcPeer {
|
||||||
.then((sdpOffer) => resolve(sdpOffer))
|
.then((sdpOffer) => resolve(sdpOffer))
|
||||||
.catch((error) => reject(error));
|
.catch((error) => reject(error));
|
||||||
} else {
|
} else {
|
||||||
logger.error("[createOffer] Method RTCPeerConnection.addTransceiver() is NOT available; using LEGACY offerToReceive{Audio,Video}");
|
logger.warn("[createOffer] Method RTCPeerConnection.addTransceiver() is NOT available; using LEGACY offerToReceive{Audio,Video}");
|
||||||
|
|
||||||
// DEPRECATED LEGACY METHOD: Old WebRTC versions don't implement
|
// DEPRECATED LEGACY METHOD: Old WebRTC versions don't implement
|
||||||
// Transceivers, and instead depend on the deprecated
|
// Transceivers, and instead depend on the deprecated
|
||||||
|
|
Loading…
Reference in New Issue