From 448126f4989a69a1f2159e8d035ead7032cf2dc0 Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Fri, 17 Feb 2017 12:31:22 +0100 Subject: [PATCH] no need to log stdout at log level info Signed-off-by: Steven Armstrong --- cdist/exec/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/exec/local.py b/cdist/exec/local.py index fd764378..e078dbd2 100644 --- a/cdist/exec/local.py +++ b/cdist/exec/local.py @@ -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: