no need to log stdout at log level info

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2017-02-17 12:31:22 +01:00
parent d10ba1e587
commit 448126f498
1 changed files with 1 additions and 1 deletions

View File

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