Make debug logging consistent #3

병합
coolaj86 :master 에서 master 로 1 commits 를 머지했습니다 2018-11-06 07:57:46 +00:00
Showing only changes of commit 791cb03910 - Show all commits

파일 보기

@ -246,8 +246,8 @@ module.exports.create = function (configs) {
}; };
}, function (err) { }, function (err) {
if (args.debug) { if (args.debug) {
console.error("[le-store-certbot] certificates.check"); log("certificates.check");
console.error(err.stack); log(err.stack);
} }
return null; return null;
}); });