diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/pkgs.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9f37ca4f7..e3f9f4cfa 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,6 +1,7 @@ - package installation: o ask for retry o log bogus signatures + o log failed transactions summary Version 12.8 - 6 March 2009 diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm index d1387214b..234f1b54e 100644 --- a/perl-install/install/pkgs.pm +++ b/perl-install/install/pkgs.pm @@ -764,6 +764,7 @@ sub _install_raw { trans_error_summary => sub { my ($nok, $errors) = @_; log::l($nok . " installation transactions failed"); + log::l(join("\n", @$errors)); if (!$packages->{options}{auto}) { $::o->ask_warn(N("Error"), N("%d installation transactions failed", $nok) . "\n\n" . N("Installation of packages failed:") . "\n\n" . join("\n", @$errors)); |