diff --git a/example/letsencrypt.js b/example/letsencrypt.js index 5bb2255..b187808 100644 --- a/example/letsencrypt.js +++ b/example/letsencrypt.js @@ -44,6 +44,7 @@ function init() { function getPrivateKeys(cb) { console.log('Generating Account Keypair'); + console.log("(Note: if you're using forge and not ursa, this will take a long time"); LeCore.leCrypto.generateRsaKeypair(2048, 65537, function (err, pems) { accountPrivateKeyPem = pems.privateKeyPem; diff --git a/lib/get-certificate.js b/lib/get-certificate.js index e3b89f8..535108d 100644 --- a/lib/get-certificate.js +++ b/lib/get-certificate.js @@ -23,8 +23,6 @@ module.exports.create = function (deps) { , newCertUrl: options.newCertUrl }; - console.log('state'); - console.log(state); if (!options.newAuthzUrl) { return handleErr(new Error("options.newAuthzUrl must be the authorization url")); }