summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2017-05-04 08:18:57 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-04 08:18:57 +0000
commitedfaab003e182b500b88adbac94625e9053455fb (patch)
tree58f987fd6c9133aaee922899d18aa890eebed75c
parent4738c37f004d6a4e3c60cff5941b91ba162fbfde (diff)
parent8548b7c3662f03c19e75a97978cd8520fa0798e7 (diff)
Merge "operation_general: fix logging to use %s" into stable/danube
-rw-r--r--yardstick/benchmark/scenarios/availability/operation/operation_general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/scenarios/availability/operation/operation_general.py b/yardstick/benchmark/scenarios/availability/operation/operation_general.py
index 42d70f4da..bfd7d04b0 100644
--- a/yardstick/benchmark/scenarios/availability/operation/operation_general.py
+++ b/yardstick/benchmark/scenarios/availability/operation/operation_general.py
@@ -71,7 +71,7 @@ class GeneralOperaion(BaseOperation):
stdin=stdin_file)
if exit_status == 0:
- LOG.debug("success,the operation's output is: {0}".format(stdout))
+ LOG.debug("success,the operation's output is: %s", stdout)
else:
LOG.error(
"the operation's error, stdout:%s, stderr:%s",