diff --git a/lib/ns_client.js b/lib/ns_client.js index c7f2a67..79b1b16 100644 --- a/lib/ns_client.js +++ b/lib/ns_client.js @@ -36,17 +36,12 @@ NsClient.prototype.connect = function() { auth += infos.login + " "; auth += hex_md5(data[2] + "-" + data[3] + "/" + data[4] + infos.pwd_socks) + " "; auth += "chromesoul chromesoul\n"; - console.log("recv: " + ab2str(rd_inf.data)); - console.log("sent: auth_ag ext_user none none\n"); chrome.socket.write(elem.socket, str2ab("auth_ag ext_user none none\n"), function(w_inf) { chrome.socket.read(elem.socket, null, function(rd_inf) { if (rd_inf.resultCode > 0) { - console.log("recv: " + ab2str(rd_inf.data)); - console.log("sent: " + auth); chrome.socket.write(elem.socket, str2ab(auth), function(w_inf) { chrome.socket.read(elem.socket, null, function(rd_inf) { if (rd_inf.resultCode > 0) { - console.log("recv: " + ab2str(rd_inf.data)); elem.is_connected = true; console.info("connected to the netsoul server"); elem.updateStatus(); @@ -87,9 +82,8 @@ NsClient.prototype.daemonize = function() { return function(rd_inf) { if (rd_inf.resultCode > 0) { var data = ab2str(rd_inf.data); - console.log("- recv: " + data); + if (data.substr(0, 5) === "ping ") { - console.log("- sent: " + data); chrome.socket.write(elem.socket, rd_inf.data, function(w_inf) { chrome.socket.read(elem.socket, null, this); }); @@ -110,7 +104,6 @@ NsClient.prototype.updateStatus = function() { var status_msg = "user_cmd state "; status_msg += this.state + ":"; status_msg += Math.round(new Date().getTime() / 1000) + "\n"; - console.log("+send: " + status_msg); chrome.socket.write(this.socket, str2ab(status_msg), function(w_inf) {}); } else { console.warn("not connected");