diff --git a/threescale_api/client.py b/threescale_api/client.py index c12744f..29f8034 100644 --- a/threescale_api/client.py +++ b/threescale_api/client.py @@ -74,7 +74,8 @@ def wait_for_tenant(self) -> bool: and len(self.accounts.list()) >= 1 \ and self.services.exists() \ and len(self.services.list()) >= 1 - except Exception: + except Exception as err: + log.info("wait_for_tenant failed: %s", err) return False @property