Browse Source

Added console logging in web example

Paul-Louis Ageneau 4 năm trước cách đây
mục cha
commit
c6bee7b0d4
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      examples/web/script.js

+ 1 - 0
examples/web/script.js

@@ -59,6 +59,7 @@ function openSignaling(url) {
     ws.onmessage = (e) => {
       if(typeof(e.data) != 'string') return;
       const message = JSON.parse(e.data);
+      console.log(message);
       const { id, type } = message;
 
       let pc = peerConnectionMap[id];