aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/dispatcher
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2017-02-14 07:27:40 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-14 07:27:40 +0000
commit523e002f3e8af341c9f13e626fa0f91ee2c33074 (patch)
treeb8aae1249d77d099893d31a12435a10d885113aa /yardstick/dispatcher
parent43482092ebb75d9f3c5659a2133b99aeefc017d9 (diff)
parent4c2ad1b3d6f51da2c6ab4b46e48bd054758496a7 (diff)
Merge "more logging fixes"
Diffstat (limited to 'yardstick/dispatcher')
-rw-r--r--yardstick/dispatcher/influxdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/dispatcher/influxdb.py b/yardstick/dispatcher/influxdb.py
index 427e669a2..d388d28a1 100644
--- a/yardstick/dispatcher/influxdb.py
+++ b/yardstick/dispatcher/influxdb.py
@@ -164,7 +164,7 @@ class InfluxdbDispatcher(DispatchBase):
timeout=self.timeout)
if res.status_code != 204:
LOG.error('Test result posting finished with status code'
- ' %d.' % res.status_code)
+ ' %d.', res.status_code)
LOG.error(res.text)
except Exception as err: