diff --git a/lib/ws.js b/lib/ws.js index 837957c0..3562590c 100644 --- a/lib/ws.js +++ b/lib/ws.js @@ -26,7 +26,6 @@ module.exports = function(wss, server){ if(msg && msg.headers && msg.headers['ws-rid']){ (reply.headers = reply.headers || {})['ws-rid'] = msg.headers['ws-rid']; } - console.log("socket out", reply); try{ws.send(Gun.text.ify(reply)); }catch(e){} // juuuust in case. }); diff --git a/lib/wsp.js b/lib/wsp.js index ec26ac5f..fdc45017 100644 --- a/lib/wsp.js +++ b/lib/wsp.js @@ -25,7 +25,6 @@ try{ws.send(Gun.text.ify(msg)); }catch(e){} // juuuust in case. }); - console.log("socket in", req); gun.__.opt.hooks.transport(req, res); }); gun.__.opt.ws.port = port || opt.ws.port || gun.__.opt.ws.port || 80;