summaryrefslogtreecommitdiffstats
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
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)
-rw-r--r--ChangeLog3
-rw-r--r--partedUtils.py6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b77d4ebca..050ecc804 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2005-11-17 Jeremy Katz <katzj@redhat.com>
+ * partedUtils.py (DiskSet.openDevices): debug prints ->
+ log.debug (#173533)
+
* scripts/upd-instroot: vnc hack me harder...
* yuminstall.py (YumSorter.tsCheck): Don't traceback on
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