From 6e44d2d5b1dcecc525542cd37504fae400e7e8af Mon Sep 17 00:00:00 2001 From: Andre Natal Date: Wed, 21 Jun 2017 14:55:19 -0700 Subject: [PATCH] Fixing messages --- index.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/index.js b/index.js index 142c6d1..d3d3795 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,6 @@ Challenge.set = function (args, domain, challenge, keyAuthorization, cb) { if (this.leDnsResponse) { this.leDnsResponse(challenge, keyAuthorization, keyAuthDigest, challengeDomain, domain) .then((successMessage) => { - console.log("Yay! " + successMessage); cb(null); }); } else { @@ -69,12 +68,7 @@ Challenge.get = function (defaults, domain, challenge, cb) { // might as well tell the user that whatever they were setting up has been checked Challenge.remove = function (args, domain, challenge, cb) { - console.info("Challenge for '" + domain + "' complete. You may remove it."); - console.info(""); - //console.info("hit enter to continue..."); - //process.stdin.resume(); - //process.stdin.on('data', function () { - // process.stdin.pause(); + console.info("Challenge for '" + domain + "' complete. You may remove it."); cb(null); //}); };