mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser: WebRtcStats localStorage item to boolean value
parent
05a6e8ea10
commit
96d217d035
|
@ -64,7 +64,7 @@ export class WebRtcStats {
|
||||||
|
|
||||||
const elastestInstrumentation = localStorage.getItem('elastest-instrumentation');
|
const elastestInstrumentation = localStorage.getItem('elastest-instrumentation');
|
||||||
|
|
||||||
if (elastestInstrumentation) {
|
if (!!elastestInstrumentation) {
|
||||||
// ElasTest instrumentation object found in local storage
|
// ElasTest instrumentation object found in local storage
|
||||||
|
|
||||||
console.warn('WebRtc stats enabled for stream ' + this.stream.streamId + ' of connection ' + this.stream.connection.connectionId);
|
console.warn('WebRtc stats enabled for stream ' + this.stream.streamId + ' of connection ' + this.stream.connection.connectionId);
|
||||||
|
|
Loading…
Reference in New Issue