diff --git a/client/api/webSocketConnection.js b/client/api/webSocketConnection.js index a2aefd52..189c9283 100644 --- a/client/api/webSocketConnection.js +++ b/client/api/webSocketConnection.js @@ -76,7 +76,6 @@ class WebSocketConnection { url = url || `${protocol}//${window.location.host}/ws`; -console.log('new connection'); this.ws = new WebSocket(url); if (this.timer) { @@ -85,7 +84,6 @@ console.log('new connection'); this.timer = setTimeout(() => { this.periodicClean(); }, cleanPeriod); this.ws.onopen = (e) => { -console.log(this.ws.readyState); this.connecting = false; resolve(e); };