Fixing messages

This commit is contained in:
Andre Natal 2017-06-21 14:55:19 -07:00
parent d983158ec0
commit 6e44d2d5b1
1 changed files with 1 additions and 7 deletions

View File

@ -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);
//});
};