Demote log message in custodia _wait_keys to debug

This was previously suppressed because of the log level in
an installation was set to error so it was never displayed
Keeping consistency and demoting it to debug since the
log level is increased to info.

Related: https://pagure.io/freeipa/issue/7408

Signed-off-by: Rob Crittenden <rcritten@redhat.com>
Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
Rob Crittenden 2018-10-30 17:31:42 -04:00 committed by Christian Heimes
parent 9b7a152e95
commit 4cde696d71

View File

@ -213,8 +213,8 @@ class CustodiaInstance(SimpleServiceInstance):
def _wait_keys(self):
timeout = api.env.replication_wait_timeout
deadline = int(time.time()) + timeout
logger.info("Waiting up to %s seconds to see our keys "
"appear on host %s", timeout, self.ldap_uri)
logger.debug("Waiting up to %s seconds to see our keys "
"appear on host %s", timeout, self.ldap_uri)
konn = KEMLdap(self.ldap_uri)
saved_e = None