From 74239788a8c0017ae5c962ceca7014b652a8dc9b Mon Sep 17 00:00:00 2001 From: John Hua Date: Tue, 6 Sep 2016 16:35:29 +0800 Subject: [PATCH] Use log.info rather than log.err Sometimes stderr may have output and showing it with ERROR may cause misinterpretation. Change-Id: I92b00feeed3bc3c8394f5bf54035b9b588c97c00 --- plugin_source/deployment_scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_source/deployment_scripts/utils.py b/plugin_source/deployment_scripts/utils.py index 983a956..55e344c 100644 --- a/plugin_source/deployment_scripts/utils.py +++ b/plugin_source/deployment_scripts/utils.py @@ -57,7 +57,7 @@ def execute(*cmd, **kwargs): if out: logging.debug(out) if err: - logging.error(err) + logging.info(err) if proc.returncode is not None and proc.returncode != 0: raise ExecutionError(err)