The thin pool creation size may not be obvious to the user, so a log
message may help alleviate some confusion.
Change-Id: I3a98b610be612a4fb7496a89f9005012c9210bf8
size_str = self._calculate_thin_pool_size()
cmd = ['lvcreate', '-T', '-L', size_str, vg_pool_name]
+ LOG.debug(_('Created thin pool \'%(pool)s\' with size %(size)s of '
+ 'total %(free)sg') % {'pool': vg_pool_name,
+ 'size': size_str,
+ 'free': self.vg_free_space})
self._execute(*cmd,
root_helper=self._root_helper,