From 4f9c6e49d113a88a28c55c51bb5eab6ad756612b Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 7 Mar 2005 22:19:06 +0000 Subject: comment out new log events that are only marginally helpful clamp each LV's max size, initial size, and growth amounts to pesize --- partRequests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'partRequests.py') diff --git a/partRequests.py b/partRequests.py index 8b160f2c0..a2af9a390 100644 --- a/partRequests.py +++ b/partRequests.py @@ -768,9 +768,9 @@ class VolumeGroupRequestSpec(RequestSpec): for pvid in self.physicalVolumes: pvreq = partitions.getRequestByID(pvid) size = pvreq.getActualSize(partitions, diskset) - log("size for pv %s is %s" % (pvid, size)) + #log("size for pv %s is %s" % (pvid, size)) size = lvm.clampPVSize(size, self.pesize) - (self.pesize/1024) - log(" clamped size is %s" % (size,)) + #log(" clamped size is %s" % (size,)) totalspace = totalspace + size return totalspace -- cgit