aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_wrapper/moon_wrapper/api/wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'moonv4/moon_wrapper/moon_wrapper/api/wrapper.py')
-rw-r--r--moonv4/moon_wrapper/moon_wrapper/api/wrapper.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/moonv4/moon_wrapper/moon_wrapper/api/wrapper.py b/moonv4/moon_wrapper/moon_wrapper/api/wrapper.py
index 0033e78f..32eb4e68 100644
--- a/moonv4/moon_wrapper/moon_wrapper/api/wrapper.py
+++ b/moonv4/moon_wrapper/moon_wrapper/api/wrapper.py
@@ -73,10 +73,13 @@ class Wrapper(Resource):
@staticmethod
def __get_project_id(target, credentials):
+ LOG.info("__get_project_id {}".format(target))
return target.get("project_id", "none")
def get_interface_url(self, project_id):
+ LOG.info("project_id {}".format(project_id))
for containers in self.CACHE.containers.values():
+ LOG.info("containers {}".format(containers))
for container in containers:
if container.get("keystone_project_id") == project_id:
if "interface" in container['name']: