summaryrefslogtreecommitdiffstats
path: root/partRequests.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2005-03-07 22:19:06 +0000
committerPeter Jones <pjones@redhat.com>2005-03-07 22:19:06 +0000
commit4f9c6e49d113a88a28c55c51bb5eab6ad756612b (patch)
tree0f2f3355e5a7b26a5cf2a876ee5eab089db59241 /partRequests.py
parentf81dfcb3564fe4bbbd18b10d0dc30e1706992b10 (diff)
downloadanaconda-4f9c6e49d113a88a28c55c51bb5eab6ad756612b.tar.gz
anaconda-4f9c6e49d113a88a28c55c51bb5eab6ad756612b.tar.xz
anaconda-4f9c6e49d113a88a28c55c51bb5eab6ad756612b.zip
comment out new log events that are only marginally helpful
clamp each LV's max size, initial size, and growth amounts to pesize
Diffstat (limited to 'partRequests.py')
-rw-r--r--partRequests.py4
1 files changed, 2 insertions, 2 deletions
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