2
0
mirror of https://git.coolaj86.com/coolaj86/greenlock-cli.js synced 2025-02-22 11:18:05 +00:00

better error handling

This commit is contained in:
AJ ONeal 2015-12-19 22:26:46 +00:00
parent 0b6b8a01cf
commit 1d89fb42cc

View File

@ -106,8 +106,8 @@ cli.main(function(_, options) {
, chainPath: args.chainPath , chainPath: args.chainPath
}, handlers).register(args, function (err, results) { }, handlers).register(args, function (err, results) {
if (err) { if (err) {
console.error('[Error]: letsencrypt'); console.error('[Error]: letsencrypt-cli');
console.error(err); console.error(err.stack || err);
return; return;
} }