Browse Source

Убрал дебаг

Book Pauk 4 years ago
parent
commit
dc917b75b1
1 changed files with 0 additions and 2 deletions
  1. 0 2
      client/api/webSocketConnection.js

+ 0 - 2
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);
                 };