summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-11-18 00:00:50 +0000
committerJeremy Katz <katzj@redhat.com>2005-11-18 00:00:50 +0000
commit6266fd51ce98feabb7e1744616deb2a31471c832 (patch)
tree1aa73429c75d22c487086b96abda362ddaa9db00 /partedUtils.py
parent101dccf9c1201459895611403050a553f72d5f90 (diff)
downloadanaconda-6266fd51ce98feabb7e1744616deb2a31471c832.tar.gz
anaconda-6266fd51ce98feabb7e1744616deb2a31471c832.tar.xz
anaconda-6266fd51ce98feabb7e1744616deb2a31471c832.zip
2005-11-17 Jeremy Katz <katzj@redhat.com>
* partedUtils.py (DiskSet.openDevices): debug prints -> log.debug (#173533)
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 2b47c8005..8f664ade2 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -899,11 +899,11 @@ class DiskSet:
return
if not iutil.getArch() in ("s390", "s390x"):
if not isinstance(DiskSet.dmList, [].__class__):
- print "starting raids"
+ log.debug("starting raids")
self.startDmRaid()
- print "done starting raids. Drivelist: "
+ log.debug("done starting raids. Drivelist: ")
for drive in self.driveList():
- print " %s" % (drive,)
+ log.debug(" %s" % (drive,))
for drive in self.driveList():
if drive in DiskSet.skippedDisks and not initAll:
continue