Skip to content

Commit

Permalink
openvidu.browser: log error when addTransceiver not available
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloFuente committed Jun 16, 2021
1 parent e0f79e8 commit 3569d49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export class WebRtcPeer {
.then((sdpOffer) => resolve(sdpOffer))
.catch((error) => reject(error));
} else {
logger.debug("[createOffer] Method RTCPeerConnection.addTransceiver() is NOT available; using LEGACY offerToReceive{Audio,Video}");
logger.error("[createOffer] Method RTCPeerConnection.addTransceiver() is NOT available; using LEGACY offerToReceive{Audio,Video}");

// DEPRECATED LEGACY METHOD: Old WebRTC versions don't implement
// Transceivers, and instead depend on the deprecated
Expand Down

0 comments on commit 3569d49

Please sign in to comment.