summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorEd Leafe <ed@leafe.com>2011-08-10 16:43:46 +0000
committerTarmac <>2011-08-10 16:43:46 +0000
commitb9c2aad3eca2cc397f96682907a0c4e8c7b6005b (patch)
tree578221a1be81ea27c562a5d020a48909d1cc80c9 /nova
parent651ff375247d3e1b68513a0af607d977a32623c8 (diff)
parentb3b13df03f0e843300f63bded410ffc4e0bd4e9f (diff)
downloadnova-b9c2aad3eca2cc397f96682907a0c4e8c7b6005b.tar.gz
nova-b9c2aad3eca2cc397f96682907a0c4e8c7b6005b.tar.xz
nova-b9c2aad3eca2cc397f96682907a0c4e8c7b6005b.zip
Removed verbose debugging output when capabilities are reported. This was clogging up the logs with kbytes of useless data, preventing actual helpful information from being retrieved easily.
Diffstat (limited to 'nova')
-rw-r--r--nova/scheduler/zone_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/scheduler/zone_manager.py b/nova/scheduler/zone_manager.py
index 97bdf3d44..9d05ea42e 100644
--- a/nova/scheduler/zone_manager.py
+++ b/nova/scheduler/zone_manager.py
@@ -198,7 +198,7 @@ class ZoneManager(object):
def update_service_capabilities(self, service_name, host, capabilities):
"""Update the per-service capabilities based on this notification."""
logging.debug(_("Received %(service_name)s service update from "
- "%(host)s: %(capabilities)s") % locals())
+ "%(host)s.") % locals())
service_caps = self.service_states.get(host, {})
capabilities["timestamp"] = utils.utcnow() # Reported time
service_caps[service_name] = capabilities