From 79cf22983579e1ed8f5b572713e4c25da60004a7 Mon Sep 17 00:00:00 2001 From: roblabla Date: Fri, 20 Feb 2015 20:08:49 +0000 Subject: [PATCH] Remove meaningless debug messages --- index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/index.js b/index.js index 28a8eb8..de91608 100644 --- a/index.js +++ b/index.js @@ -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 {