diff --git a/src/infrastructure/Listener.ts b/src/infrastructure/Listener.ts index f1778b29ed..7ccdf0236e 100644 --- a/src/infrastructure/Listener.ts +++ b/src/infrastructure/Listener.ts @@ -107,11 +107,8 @@ export class Listener { this.webSocket = new WebSocket(this.url); } this.webSocket.onopen = () => { - console.log('connection open'); }; this.webSocket.onerror = (err) => { - console.log('WebSocket Error '); - console.log(err); reject(err); }; this.webSocket.onmessage = (msg) => {