aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2017-04-24 02:02:03 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-04-24 02:02:03 +0000
commit942b41170ebb412cef1ccc0c134ea8984e82171d (patch)
tree88be1daba09a520dfe5011643ae8752d12904ddb
parent07249e010dd9837d63f3090f1eac0fc6763b968f (diff)
parent37f600566c56542999529da47299c4caf54d073a (diff)
Merge "operation_general: fix logging to use %s"
-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 dc1547ede..49c63cc75 100644
--- a/yardstick/benchmark/scenarios/availability/operation/operation_general.py
+++ b/yardstick/benchmark/scenarios/availability/operation/operation_general.py
@@ -66,7 +66,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",