diff options
| author | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-03-18 09:21:08 -0700 |
|---|---|---|
| committer | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-03-18 09:21:08 -0700 |
| commit | ef33d6bde27276fb4c93ed6bbcb972977f03a370 (patch) | |
| tree | 174f671b2f5c30db6250227edd1fd056e7987ff6 | |
| parent | 12ffa884c07b55c982a1ad60a94e72c955db81c3 (diff) | |
| download | nova-ef33d6bde27276fb4c93ed6bbcb972977f03a370.tar.gz nova-ef33d6bde27276fb4c93ed6bbcb972977f03a370.tar.xz nova-ef33d6bde27276fb4c93ed6bbcb972977f03a370.zip | |
results
| -rw-r--r-- | nova/api/openstack/servers.py | 2 | ||||
| -rw-r--r-- | nova/scheduler/api.py | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py index 9f14a6b82..49f714d47 100644 --- a/nova/api/openstack/servers.py +++ b/nova/api/openstack/servers.py @@ -130,7 +130,7 @@ class Controller(wsgi.Controller): try: LOG.debug(_("***SHOW")) instance = self.compute_api.routing_get(req.environ['nova.context'], id) - LOG.debug(_("***SHOW")) + LOG.debug(_("***SHOW OUT %s" % instance)) return _translate_detail_keys(instance) except exception.NotFound: return faults.Fault(exc.HTTPNotFound()) diff --git a/nova/scheduler/api.py b/nova/scheduler/api.py index 7efc28072..6b0f804f9 100644 --- a/nova/scheduler/api.py +++ b/nova/scheduler/api.py @@ -118,7 +118,10 @@ def _issue_novaclient_command(nova, zone, collection, method_name, \ locals())) return - return getattr(item, method_name)() + LOG.debug("***CALLING CHILD ZONE") + result = getattr(item, method_name)() + LOG.debug("***CHILD ZONE GAVE %s", result) + return result def wrap_novaclient_function(f, collection, method_name, item_id): |
