Skip to content

Commit

Permalink
remove debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
schlagmichdoch committed May 4, 2023
1 parent f39bfed commit 0ac3c5a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions public_included_ws_fallback/scripts/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,6 @@ class WSPeer extends Peer {
}

sendJSON(message) {
console.debug(message)
message.to = this._peerId;
message.roomType = this._roomType;
message.roomSecret = this._roomSecret;
Expand Down Expand Up @@ -854,7 +853,6 @@ class PeersManager {

_onWsDisconnected() {
for (const peerId in this.peers) {
console.debug(this.peers[peerId].rtcSupported);
if (this.peers[peerId] && (!this.peers[peerId].rtcSupported || !window.isRtcSupported)) {
Events.fire('peer-disconnected', peerId);
}
Expand Down

0 comments on commit 0ac3c5a

Please sign in to comment.