Missing blankspace in debug in murano.common.statservice

Add missing blankspace to debug log in murano.common.statservice

Change-Id: I48e297787b2ad81f13521d4c1d9f338ac26a8c06
This commit is contained in:
liyingjun 2015-12-24 09:43:38 +08:00
parent 6b9145f6e9
commit 20e8339e13

View File

@ -58,8 +58,8 @@ class StatsCollectingService(service.Service):
def update_stats(self):
LOG.debug("Updating statistic information.")
LOG.debug("Stats object: {stats}".format(stats=v1.stats))
LOG.debug("Stats: Requests:{amount} Errors: {error}"
"Ave.Res.Time {time:2.4f}\n Per tenant: {req_count}".format(
LOG.debug("Stats: (Requests: {amount} Errors: {error} "
"Ave.Res.Time {time:2.4f}\n Per tenant: {req_count})".format(
amount=v1.stats.request_count,
error=v1.stats.error_count,
time=v1.stats.average_time,