~rackspace-titan/nova/lp824601

« back to all changes in this revision

Viewing changes to nova/scheduler/zone_manager.py

  • Committer: Tarmac
  • Author(s): Ed Leafe
  • Date: 2011-08-10 16:43:46 UTC
  • mfrom: (1413.1.1 lp824043)
  • Revision ID: tarmac-20110810164346-7xnk2sta97lppwen
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.

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
    def update_service_capabilities(self, service_name, host, capabilities):
199
199
        """Update the per-service capabilities based on this notification."""
200
200
        logging.debug(_("Received %(service_name)s service update from "
201
 
                            "%(host)s: %(capabilities)s") % locals())
 
201
                "%(host)s.") % locals())
202
202
        service_caps = self.service_states.get(host, {})
203
203
        capabilities["timestamp"] = utils.utcnow()  # Reported time
204
204
        service_caps[service_name] = capabilities