From 20e8339e13c5d4747de6bcd39e2f6f25a381c21c Mon Sep 17 00:00:00 2001 From: liyingjun Date: Thu, 24 Dec 2015 09:43:38 +0800 Subject: [PATCH] Missing blankspace in debug in murano.common.statservice Add missing blankspace to debug log in murano.common.statservice Change-Id: I48e297787b2ad81f13521d4c1d9f338ac26a8c06 --- murano/common/statservice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/murano/common/statservice.py b/murano/common/statservice.py index c30d715b..fc2141dd 100644 --- a/murano/common/statservice.py +++ b/murano/common/statservice.py @@ -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,