diff options
| author | Ed Leafe <ed@leafe.com> | 2011-08-10 11:25:38 -0500 |
|---|---|---|
| committer | Ed Leafe <ed@leafe.com> | 2011-08-10 11:25:38 -0500 |
| commit | b3b13df03f0e843300f63bded410ffc4e0bd4e9f (patch) | |
| tree | 578221a1be81ea27c562a5d020a48909d1cc80c9 | |
| parent | 651ff375247d3e1b68513a0af607d977a32623c8 (diff) | |
| download | nova-b3b13df03f0e843300f63bded410ffc4e0bd4e9f.tar.gz nova-b3b13df03f0e843300f63bded410ffc4e0bd4e9f.tar.xz nova-b3b13df03f0e843300f63bded410ffc4e0bd4e9f.zip | |
Removed verbose debugging output when capabilities are reported.
| -rw-r--r-- | nova/scheduler/zone_manager.py | 2 |
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 |
