Show what is being fetched
This commit is contained in:
parent
16526fc4be
commit
cc59ddd69d
@ -91,6 +91,8 @@ class Distro(object):
|
|||||||
run_over_keys = acutal_keys[0:-1]
|
run_over_keys = acutal_keys[0:-1]
|
||||||
end_key = acutal_keys[-1]
|
end_key = acutal_keys[-1]
|
||||||
quiet = kargs.get('quiet', False)
|
quiet = kargs.get('quiet', False)
|
||||||
|
LOG.debug("Running over keys (%s)" % (", ".join(run_over_keys)))
|
||||||
|
LOG.debug("End key is (%s)" % (end_key))
|
||||||
for k in run_over_keys:
|
for k in run_over_keys:
|
||||||
if quiet:
|
if quiet:
|
||||||
root = root.get(k)
|
root = root.get(k)
|
||||||
@ -98,10 +100,13 @@ class Distro(object):
|
|||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
root = root[k]
|
root = root[k]
|
||||||
|
end_value = None
|
||||||
if not quiet:
|
if not quiet:
|
||||||
return root[end_key]
|
end_value = root[end_key]
|
||||||
else:
|
else:
|
||||||
return root.get(end_key)
|
end_value = root.get(end_key)
|
||||||
|
LOG.debug("Retrieved end command: %s", end_value)
|
||||||
|
return end_value
|
||||||
|
|
||||||
def known_component(self, name):
|
def known_component(self, name):
|
||||||
return name in self._components
|
return name in self._components
|
||||||
|
Loading…
Reference in New Issue
Block a user