Change return code and command said log.info
Changes return code and command said to log.info in
manage-projects. This increases the level of output
for the verbose flag which was changed to the info
level in https://review.openstack.org/#/c/74118
Change-Id: I04929bd084dad0d1e65987182be1c7959fb9b242
diff --git a/jeepyb/cmd/manage_projects.py b/jeepyb/cmd/manage_projects.py
index 9d54f42..9423fa6 100644
--- a/jeepyb/cmd/manage_projects.py
+++ b/jeepyb/cmd/manage_projects.py
@@ -76,8 +76,8 @@
p = subprocess.Popen(cmd_list, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, env=newenv)
(out, nothing) = p.communicate()
- log.debug("Return code: %s" % p.returncode)
- log.debug("Command said: %s" % out.strip())
+ log.info("Return code: %s" % p.returncode)
+ log.info("Command said: %s" % out.strip())
if status:
return (p.returncode, out.strip())
return out.strip()