Убрал дебаг

This commit is contained in:
Book Pauk
2020-10-30 16:11:02 +07:00
parent ad32bdab44
commit dc917b75b1

View File

@@ -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);
};