Remove log line.

This commit is contained in:
Dermot Duffy
2023-04-29 13:31:42 -07:00
parent 37a016e381
commit 5a9e6f8f72
-1
View File
@@ -153,7 +153,6 @@ class FrigateCardGo2RTCPlayer extends VideoRTC {
// Must add microphone tracks prior to making the offer. // Must add microphone tracks prior to making the offer.
this._microphoneStream?.getTracks().forEach((track) => { this._microphoneStream?.getTracks().forEach((track) => {
console.info('Adding microphone track', track);
pc.addTransceiver(track, { direction: 'sendonly' }); pc.addTransceiver(track, { direction: 'sendonly' });
}); });