From d3ba3ae9fcb829b1c26f5ccac96a1258b61ba2af Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 30 Aug 2019 08:31:33 +0200 Subject: [PATCH] Add Log.info --- wo/cli/plugins/site.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wo/cli/plugins/site.py b/wo/cli/plugins/site.py index a2f2f6f..5a91221 100644 --- a/wo/cli/plugins/site.py +++ b/wo/cli/plugins/site.py @@ -1376,9 +1376,14 @@ class WOSiteUpdateController(CementBaseController): # check if a wildcard cert for the root domain exist Log.debug(self, "checkWildcardExist on *.{0}" .format(wo_root_domain)) + Log.info(self, "Checking if there is a wildcard " + "certificate available from the root domain") isWildcard = checkWildcardExist(self, wo_root_domain) Log.debug(self, "isWildcard = {0}".format(isWildcard)) if isWildcard: + Log.info(self, "Using existing Wildcard SSL" + "certificate from {0} to secure {1}" + .format(wo_root_domain, wo_domain)) Log.debug(self, "symlink wildcard " "cert between {0} & {1}" .format(wo_domain, wo_root_domain))