diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-08 23:58:10 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-09 00:04:40 +0100 |
commit | 67cfbb987c02f8725cfaf2cf4bc5f623ff10c07e (patch) | |
tree | 21d261db60313d3a9975e7e367369cf04f7d5bbb /perl-install | |
parent | 034d58457f287d312a06b10a3496a25befbf15d5 (diff) | |
download | drakx-67cfbb987c02f8725cfaf2cf4bc5f623ff10c07e.tar drakx-67cfbb987c02f8725cfaf2cf4bc5f623ff10c07e.tar.gz drakx-67cfbb987c02f8725cfaf2cf4bc5f623ff10c07e.tar.bz2 drakx-67cfbb987c02f8725cfaf2cf4bc5f623ff10c07e.tar.xz drakx-67cfbb987c02f8725cfaf2cf4bc5f623ff10c07e.zip |
log partitioning wizard failures (mga#11924)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 0f137de52..1c9c60aa3 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- partitioning wizard: + o log failures (mga#11924) + Version 16.11 - 6 December 2013 - fix a crash in rpmdrake when package list is empty (mga#11901) diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 4749deec1..fbe72f8bc 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -595,6 +595,7 @@ sub main { if ($err =~ /wizcancel/) { $_->destroy foreach $::WizardTable->get_children; } else { + log::l("Partitioning failed: $err"); $o->ask_warn('', N("Partitioning failed: %s", formatError($err))); } } |