diff options
Diffstat (limited to 'urpm/install.pm')
-rw-r--r-- | urpm/install.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/urpm/install.pm b/urpm/install.pm index 7e68343d..f85dbde0 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -168,8 +168,9 @@ sub install { $options{excludepath} ? (excludepath => [ split /,/, $options{excludepath} ]) : () )) { $urpm->{debug} and $urpm->{debug}( - N("adding package %s (id=%d, eid=%d, update=%d, file=%s)", scalar($pkg->fullname), - $_, $pkg->id, $update, $mode->{$_})); + N("trans: scheduling package %s %s (id=%d, file=%s)", + $update ? 'update' : 'install', + scalar($pkg->fullname), $_, $mode->{$_})); } else { $urpm->{error}(N("unable to install package %s", $mode->{$_})); } |