diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-04-03 23:45:57 -0700 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2017-04-04 21:28:55 -0700 |
commit | 37f600566c56542999529da47299c4caf54d073a (patch) | |
tree | 026d571d6b677808a7905c3b2ab349e28b8d3d25 | |
parent | 65b2c23bff92368a9993d03ec70a64ed7344f1e8 (diff) |
operation_general: fix logging to use %s
Change-Id: I1b37cbf07e8858ca3e75bb74c57fe84485ff4989
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
-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 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", |