Improved database error handling, new Let's Encrypt server console commands.

This commit is contained in:
Ylian Saint-Hilaire
2020-03-04 14:57:03 -08:00
parent f1c2ef3e1e
commit 3400dfac2a
7 changed files with 137 additions and 94 deletions

View File

@@ -251,7 +251,9 @@ module.exports.CreateLetsEncrypt = function (parent) {
} catch (ex) {
parent.debug('cert', "checkCertificate main exception: (" + JSON.stringify(ex) + ")");
console.log(ex);
return ex;
}
return null;
}
return obj;