Virt: fix debug log messages

Updated the debug messages following comments on the review
https://review.openstack.org/#/c/198312

TrivialFix

Change-Id: Ia660844430abff1d065c60ea58423ffca1889f51
This commit is contained in:
Gary Kotton 2015-07-20 05:30:58 -07:00 committed by garyk
parent 6a24bbeecd
commit d279901ab6
1 changed files with 5 additions and 5 deletions

View File

@ -570,13 +570,13 @@ def _get_desirable_cpu_topologies(flavor, image_meta, allow_threads=True,
"threads": allow_threads})
preferred, maximum = _get_cpu_topology_constraints(flavor, image_meta)
LOG.debug("Topology preferred %(preferred)s, maximum %(maximum)s" %
LOG.debug("Topology preferred %(preferred)s, maximum %(maximum)s",
{"preferred": preferred, "maximum": maximum})
possible = _get_possible_cpu_topologies(flavor.vcpus,
maximum,
allow_threads)
LOG.debug("Possible topologies %s" % possible)
LOG.debug("Possible topologies %s", possible)
if numa_topology:
min_requested_threads = None
@ -592,16 +592,16 @@ def _get_desirable_cpu_topologies(flavor, image_meta, allow_threads=True,
min_requested_threads)
specified_threads = max(1, min_requested_threads)
LOG.debug("Filtering topologies best for %d threads" %
LOG.debug("Filtering topologies best for %d threads",
specified_threads)
possible = _filter_for_numa_threads(possible,
specified_threads)
LOG.debug("Remaining possible topologies %s" %
LOG.debug("Remaining possible topologies %s",
possible)
desired = _sort_possible_cpu_topologies(possible, preferred)
LOG.debug("Sorted desired topologies %s" % desired)
LOG.debug("Sorted desired topologies %s", desired)
return desired