logging fixes
This commit is contained in:
parent
606dcf3c4f
commit
cf0ee1c064
13
account.js
13
account.js
|
@ -5,6 +5,7 @@ var U = require('./utils.js');
|
|||
|
||||
var Keypairs = require('@root/keypairs');
|
||||
var Enc = require('@root/encoding/bytes');
|
||||
var agreers = {};
|
||||
|
||||
A._getAccountKid = function(me, options) {
|
||||
// It's just fine if there's no account, we'll go get the key id we need via the existing key
|
||||
|
@ -138,8 +139,15 @@ A._registerAccount = function(me, options) {
|
|||
var agreeToTerms = options.agreeToTerms;
|
||||
if (!agreeToTerms) {
|
||||
agreeToTerms = function(terms) {
|
||||
console.log(
|
||||
'By using this software you accept this Subscriber Agreement and Terms of Service:'
|
||||
if (agreers[options.subscriberEmail]) {
|
||||
return true;
|
||||
}
|
||||
agreers[options.subscriberEmail] = true;
|
||||
console.info();
|
||||
console.info(
|
||||
'By using this software you (' +
|
||||
options.subscriberEmail +
|
||||
') are agreeing to the following:'
|
||||
);
|
||||
console.info(
|
||||
'ACME Subscriber Agreement:',
|
||||
|
@ -149,6 +157,7 @@ A._registerAccount = function(me, options) {
|
|||
'Greenlock/ACME.js Terms of Use:',
|
||||
terms.acmeJsTermsUrl
|
||||
);
|
||||
console.info();
|
||||
return true;
|
||||
};
|
||||
} else if (true === agreeToTerms) {
|
||||
|
|
|
@ -55,7 +55,7 @@ M._init = function(me, tz, locale) {
|
|||
'https://api.rootprojects.org/api/projects/ACME.js/dependents',
|
||||
json: {
|
||||
maintainer: me.maintainerEmail,
|
||||
package: me.packageAgent,
|
||||
package: me.packageAgent,
|
||||
tz: tz,
|
||||
locale: locale
|
||||
}
|
||||
|
@ -63,7 +63,10 @@ M._init = function(me, tz, locale) {
|
|||
return me
|
||||
.request(req)
|
||||
.catch(function(err) {
|
||||
if (true || me.debug) {
|
||||
if (me.debug) {
|
||||
console.error(
|
||||
'error adding maintainer to support notices:'
|
||||
);
|
||||
console.error(err);
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue