Merge "Missing blankspace in debug in murano.common.statservice"

This commit is contained in:
Jenkins 2015-12-25 18:18:09 +00:00 committed by Gerrit Code Review
commit 95e25b00a6
1 changed files with 2 additions and 2 deletions

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,