Make the partition coordinator log more readable

Change-Id: I972e364aee5bf154bfe3e2671934563db7ea4b6a
This commit is contained in:
liu-sheng 2015-07-30 16:42:13 +08:00
parent 29d3cd405b
commit a6848dbcac
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ class PartitionCoordinator(object):
hr = utils.HashRing(members)
filtered = [v for v in iterable
if hr.get_node(str(v)) == self._my_id]
LOG.debug('My subset: %s', filtered)
LOG.debug('My subset: %s', [str(f) for f in filtered])
return filtered
except tooz.coordination.ToozError:
LOG.exception(_LE('Error getting group membership info from '