diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-07-05 17:47:09 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-07-05 17:47:09 +0000 |
commit | 362a9fd0096e05c797bb325cad37f661f359d3cf (patch) | |
tree | 84fd78c71ca94544d748b1533e9e8eb1f586cc13 | |
parent | 6787c186e01bd1ffaf826f26e5ca86a16fd91b87 (diff) | |
download | anaconda-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-- | ChangeLog | 3 | ||||
-rw-r--r-- | yuminstall.py | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -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] |