Skip to content

Commit 3c67163

Browse files
committed
Enable logging
1 parent 31049c7 commit 3c67163

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui-frontend/src/ws.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ const connectSocket = () => {
4040
};
4141

4242
sock.onmessage = (msg) => {
43-
// console.log("RECEIVED EVENT", msg);
44-
// console.log("RECEIVED EVENT PAYLOAD", JSON.stringify(JSON.parse(msg.data)));
43+
//console.log("RECEIVED EVENT", msg);
44+
console.log("RECEIVED EVENT PAYLOAD", JSON.stringify(JSON.parse(msg.data)));
4545
listeners.forEach((listener) => listener(msg));
4646
};
4747
} catch (err) {

0 commit comments

Comments
 (0)