Browse Source

clean up some log

Dennis Mårtensson 11 years ago
parent
commit
e7fedbb18f
1 changed files with 1 additions and 3 deletions
  1. 1 3
      example/server.js

+ 1 - 3
example/server.js

@@ -21,16 +21,14 @@ app.get('/webrtc.io.js', function(req, res) {
 
 webRTC.rtc.on('connect', function(rtc) {
   //Client connected
-  console.log('connect');
 });
 
 webRTC.rtc.on('send answer', function(rtc) {
   //answer sent
-  console.log('send answer');
 });
 
 webRTC.rtc.on('disconnect', function(rtc) {
-  console.log('disconnect');
+  //Client disconnect 
 });
 
 webRTC.rtc.on('chat_msg', function(data, socket) {