diff --git a/systemvm/debian/opt/cloud/bin/cs/CsHelper.py b/systemvm/debian/opt/cloud/bin/cs/CsHelper.py index 241643d9956..66eb5775088 100755 --- a/systemvm/debian/opt/cloud/bin/cs/CsHelper.py +++ b/systemvm/debian/opt/cloud/bin/cs/CsHelper.py @@ -188,6 +188,8 @@ def execute(command): logging.info("Executing: %s" % command) result = subprocess.check_output(command, shell=True) returncode = 0 + + logging.debug("Command [%s] has the result [%s]" % (command, result)) return result.splitlines() except subprocess.CalledProcessError as e: logging.error(e)