diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-01-25 16:15:24 -0800 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2017-02-07 23:58:04 -0800 |
commit | 4c2ad1b3d6f51da2c6ab4b46e48bd054758496a7 (patch) | |
tree | a274888b3204030a7d9ea6638e77c6162d8bc71b /yardstick/dispatcher/influxdb.py | |
parent | a4241e6e9b121447a50fdfe0d79b322c2e2aaea9 (diff) |
more logging fixes
don't use .format() with logging, use regular %s logginer formatter
Change-Id: I1ce0d81cc3f81c35003ef453e82c57faeb46c49f
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'yardstick/dispatcher/influxdb.py')
-rw-r--r-- | yardstick/dispatcher/influxdb.py | 2 |
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: |