Skip to content

Commit a636a12

Browse files
authored
Merge pull request #389 from NEMStudios/task/g_remove_console_log
Fixed #388 Removed listener console.log
2 parents 0579379 + 2f27805 commit a636a12

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/infrastructure/Listener.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,8 @@ export class Listener {
107107
this.webSocket = new WebSocket(this.url);
108108
}
109109
this.webSocket.onopen = () => {
110-
console.log('connection open');
111110
};
112111
this.webSocket.onerror = (err) => {
113-
console.log('WebSocket Error ');
114-
console.log(err);
115112
reject(err);
116113
};
117114
this.webSocket.onmessage = (msg) => {

0 commit comments

Comments
 (0)