diff --git a/nova/compute/resource_tracker.py b/nova/compute/resource_tracker.py index 49edeed5517..4f32a9eff29 100644 --- a/nova/compute/resource_tracker.py +++ b/nova/compute/resource_tracker.py @@ -1309,12 +1309,13 @@ def _remove_deleted_instances_allocations(self, context, cn, # that contains this source compute host information anyway and # recreate an allocation that only refers to itself. So we # don't need to do anything in that case. Just log the - # situation here for debugging information but don't attempt to - # delete or change the allocation. - LOG.debug("Instance %s has been moved to another host %s(%s). " - "There are allocations remaining against the source " - "host that might need to be removed: %s.", - instance_uuid, instance.host, instance.node, alloc) + # situation here for information but don't attempt to delete or + # change the allocation. + LOG.warning("Instance %s has been moved to another host " + "%s(%s). There are allocations remaining against " + "the source host that might need to be removed: " + "%s.", + instance_uuid, instance.host, instance.node, alloc) def delete_allocation_for_evacuated_instance(self, context, instance, node, node_type='source'):