diff --git a/index.js b/index.js index 1ed95c2..522bc10 100644 --- a/index.js +++ b/index.js @@ -148,7 +148,7 @@ module.exports.create = function (config) { // On Error: Promise.reject(new Error("something descriptive for the user")) store.accounts.checkKeypairAsync = function (opts) { var id = opts.account.id || 'single-user'; - console.log('accounts.checkKeypairAsync for', id); + //console.log('accounts.checkKeypairAsync for', id); if (!opts.account.id) { return PromiseA.reject(new Error("'account.id' should have been set in approveDomains()")); } var pathname = path.join(tameWild(opts.accountsDir, opts.subject), sanitizeFilename(id) + '.json'); @@ -170,7 +170,7 @@ module.exports.create = function (config) { // On Error: Promise.reject(new Error("something descriptive for the user")) store.accounts.setKeypairAsync = function (opts, keypair) { var id = opts.account.id || 'single-user'; - console.log('accounts.setKeypairAsync for', id); + //console.log('accounts.setKeypairAsync for', id); keypair = opts.keypair || keypair; if (!opts.account.id) { return PromiseA.reject(new Error("'account.id' should have been set in approveDomains()")); } return mkdirpAsync(tameWild(opts.accountsDir, opts.subject)).then(function () { diff --git a/package.json b/package.json index a77538d..5f3d12d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "le-store-fs", - "version": "1.0.1", + "version": "1.0.2", "description": "A file-based certificate store for greenlock that supports wildcards.", "homepage": "https://git.coolaj86.com/coolaj86/le-store-fs.js", "main": "index.js",