From dc917b75b1f83536e77e323e49ccbdeafc90b2a5 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Fri, 30 Oct 2020 16:11:02 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BB=20=D0=B4=D0=B5?= =?UTF-8?q?=D0=B1=D0=B0=D0=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/api/webSocketConnection.js | 2 -- 1 file changed, 2 deletions(-) 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); };