Remove meaningless debug messages

This commit is contained in:
roblabla 2015-02-20 20:08:49 +00:00
parent 66a6584a6a
commit 79cf229835

View File

@ -286,7 +286,6 @@ function createClient(options) {
}
function onEncryptionKeyRequest(packet) {
debug("Generating 16 random bytes");
crypto.randomBytes(16, gotSharedSecret);
function gotSharedSecret(err, sharedSecret) {
@ -296,7 +295,6 @@ function createClient(options) {
client.end();
return;
}
debug("Got mah bytes");
if (haveCredentials) {
joinServerRequest(onJoinServerResponse);
} else {