diff options
-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", |