Rm stderr debug output, stderr is not captured.

This commit is contained in:
Darko Poljak 2016-07-15 08:22:05 +02:00
commit 2eab9b9598
3 changed files with 14 additions and 10 deletions

View file

@ -173,7 +173,8 @@ class Remote(object):
try:
output, errout = exec_util.call_get_output(command, env=os_environ)
self.log.debug("Remote stdout: {}".format(output))
self.log.debug("Remote stderr: {}".format(errout))
# Currently, stderr is not captured.
# self.log.debug("Remote stderr: {}".format(errout))
if return_output:
return output.decode()
except subprocess.CalledProcessError as e: