From c068c4fbb02e16dcc0c598fa04c463b779223219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Weing=C3=A4rtner?= Date: Thu, 12 Apr 2018 18:15:49 -0300 Subject: [PATCH] logCommandResultInVrs --- systemvm/debian/opt/cloud/bin/cs/CsHelper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systemvm/debian/opt/cloud/bin/cs/CsHelper.py b/systemvm/debian/opt/cloud/bin/cs/CsHelper.py index 241643d9956e..66eb57750882 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)