We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31049c7 commit 3c67163Copy full SHA for 3c67163
ui-frontend/src/ws.js
@@ -40,8 +40,8 @@ const connectSocket = () => {
40
};
41
42
sock.onmessage = (msg) => {
43
- // console.log("RECEIVED EVENT", msg);
44
- // console.log("RECEIVED EVENT PAYLOAD", JSON.stringify(JSON.parse(msg.data)));
+ //console.log("RECEIVED EVENT", msg);
+ console.log("RECEIVED EVENT PAYLOAD", JSON.stringify(JSON.parse(msg.data)));
45
listeners.forEach((listener) => listener(msg));
46
47
} catch (err) {
0 commit comments