diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-04-24 02:02:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-24 02:02:03 +0000 |
commit | 942b41170ebb412cef1ccc0c134ea8984e82171d (patch) | |
tree | 88be1daba09a520dfe5011643ae8752d12904ddb | |
parent | 07249e010dd9837d63f3090f1eac0fc6763b968f (diff) | |
parent | 37f600566c56542999529da47299c4caf54d073a (diff) |
Merge "operation_general: fix logging to use %s"
-rw-r--r-- | yardstick/benchmark/scenarios/availability/operation/operation_general.py | 2 |
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", |