v3.1.5: quiet down

This commit is contained in:
AJ ONeal 2019-11-05 15:49:32 -07:00
parent fcafde98be
commit b558c1f0ec
2 changed files with 9 additions and 3 deletions

View File

@ -399,15 +399,21 @@ G.create = function(gconf) {
notify: greenlock._notify,
debug: greenlock._defaults.debug || args.debug
});
// The user has explicitly set the directoryUrl, great!
var dirUrl = args.directoryUrl || mconf.directoryUrl;
// The directoryUrl is implicit
var showDir = false;
if (!dirUrl) {
showDir = true;
dirUrl = greenlock._defaults.directoryUrl;
}
if (showDir || (/staging/.test(dirUrl) && !gdefaults.shownDirectory)) {
// Show the directory if implicit
if (showDir && !gdefaults.shownDirectory) {
gdefaults.shownDirectory = true;
console.info('ACME Directory URL:', gdefaults.directoryUrl);
console.info('ACME Directory URL:', dirUrl);
}
var dir = caches[dirUrl];

View File

@ -1,6 +1,6 @@
{
"name": "@root/greenlock",
"version": "3.1.4",
"version": "3.1.5",
"description": "The easiest Let's Encrypt client for Node.js and Browsers",
"homepage": "https://rootprojects.org/greenlock/",
"main": "greenlock.js",