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

@ -220,7 +220,8 @@ class Local(object):
if save_output:
output, errout = exec_util.call_get_output(command, env=env)
self.log.debug("Local stdout: {}".format(output))
self.log.debug("Local stderr: {}".format(errout))
# Currently, stderr is not captured.
# self.log.debug("Local stderr: {}".format(errout))
if return_output:
return output.decode()
else: