From b068152fb92638018f735e1d0b193d3468137f14 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 9 Aug 2016 22:55:43 -0400 Subject: [PATCH] chimney --- lib/standalone.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/standalone.js b/lib/standalone.js index f21b907..d74cbd6 100644 --- a/lib/standalone.js +++ b/lib/standalone.js @@ -13,18 +13,15 @@ module.exports.create = function (defaults) { // servers should use a database of some sort , _challenges: {} , set: function (args, domain, token, secret, cb) { - console.log('bloh 1'); handlers._challenges[token] = secret; cb(null); } , get: function (args, domain, token, cb) { - console.log('bloh 2'); // TODO keep in mind that, generally get args are just args.domains // and it is disconnected from the flow of setChallenge and removeChallenge cb(null, handlers._challenges[token]); } , remove: function (args, domain, token, cb) { - console.log('balh 3'); delete handlers._challenges[token]; cb(null); }