delog after fixing partial sub set

This commit is contained in:
Mark Nadal 2015-02-13 20:01:52 -07:00
parent 92408aa1e1
commit 6e5a5aa872
2 changed files with 0 additions and 2 deletions

View File

@ -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.
});

View File

@ -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;