summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-07-05 17:47:09 +0000
committerJeremy Katz <katzj@redhat.com>2006-07-05 17:47:09 +0000
commit362a9fd0096e05c797bb325cad37f661f359d3cf (patch)
tree84fd78c71ca94544d748b1533e9e8eb1f586cc13
parent6787c186e01bd1ffaf826f26e5ca86a16fd91b87 (diff)
downloadanaconda-362a9fd0096e05c797bb325cad37f661f359d3cf.tar.gz
anaconda-362a9fd0096e05c797bb325cad37f661f359d3cf.tar.xz
anaconda-362a9fd0096e05c797bb325cad37f661f359d3cf.zip
2006-07-05 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (AnacondaYum._run): At least try to log the real transaction error
-rw-r--r--ChangeLog3
-rw-r--r--yuminstall.py1
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 91b881862..c71ab779e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2006-07-05 Jeremy Katz <katzj@redhat.com>
+ * yuminstall.py (AnacondaYum._run): At least try to log the real
+ transaction error
+
* stubs/Makefile: Link the stub lib against wlite (#197593)
* scripts/mk-rescueimage.i386 (productpath): Fix for new stage2
diff --git a/yuminstall.py b/yuminstall.py
index 1fa173781..11976251c 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -438,6 +438,7 @@ class AnacondaYum(YumSorter):
}
uniqueProbs = {}
for (descr, (type, mount, need)) in probs:
+ log.error("%s: %s" %(probTypes[type], descr))
if not uniqueProbs.has_key(type) and probTypes.has_key(type):
uniqueProbs[type] = probTypes[type]